18 lines
807 B
Plaintext
18 lines
807 B
Plaintext
# Task 3 Row 8 — a capability on with its dependency off: the real jar, the real exit code
|
|
|
|
### outbox on, JPA off
|
|
```
|
|
java.lang.IllegalStateException: This deployment enables capabilities whose dependencies are off:
|
|
- ca-skeleton.outbox.enabled=true needs relational persistence to store rows; set ca-skeleton.persistence-jpa.enabled=true or turn the outbox off.
|
|
- ca-skeleton.outbox.enabled=true needs somewhere to publish; set app.messaging.enabled=true or turn the outbox off.
|
|
exit code: 1
|
|
```
|
|
|
|
### relay on, outbox off
|
|
```
|
|
java.lang.IllegalStateException: This deployment enables capabilities whose dependencies are off:
|
|
- ca-skeleton.outbox.relay-enabled=true only starts the scheduler for a capability that is off; set ca-skeleton.outbox.enabled=true or turn the relay off.
|
|
exit code: 1
|
|
```
|
|
|