I'm using the Apached C++ QPID broker and it's failing to parse this rule:
acl deny-log all all broker
. Tokens found after action "all"
I'm trying to prevent anyone from modifying the broker.
Asked
Active
Viewed 36 times
0

EncryptedWatermelon
- 4,788
- 1
- 12
- 28
1 Answers
0
It turns out the C++ broker doesn't allow anything after acl <permission> all all
. Brokers only have access and update permissions. The fix was to add:
acl deny-log all access broker
acl deny-log all update broker

EncryptedWatermelon
- 4,788
- 1
- 12
- 28