-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support publishing AMQP 1.0 to Event Exchange
Add new config to have the Exchange Event Plugin optionally publish AMQP 1.0 messages.
- Loading branch information
Showing
8 changed files
with
506 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 31 additions & 16 deletions
47
deps/rabbitmq_event_exchange/test/config_schema_SUITE_data/rabbitmq_event_exchange.snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,34 @@ | ||
[ | ||
{virtual_host1, | ||
"event_exchange.vhost = /", | ||
[ | ||
{rabbitmq_event_exchange, [ | ||
{vhost, <<"/">>} | ||
]} | ||
], [rabbitmq_event_exchange] | ||
}, | ||
{virtual_host1, | ||
"event_exchange.vhost = /", | ||
[{rabbitmq_event_exchange, [ | ||
{vhost, <<"/">>} | ||
]}], | ||
[rabbitmq_event_exchange] | ||
}, | ||
|
||
{virtual_host2, | ||
"event_exchange.vhost = dev", | ||
[ | ||
{rabbitmq_event_exchange, [ | ||
{vhost, <<"dev">>} | ||
]} | ||
], [rabbitmq_event_exchange] | ||
} | ||
{virtual_host2, | ||
"event_exchange.vhost = dev", | ||
[{rabbitmq_event_exchange, [ | ||
{vhost, <<"dev">>} | ||
]} | ||
], | ||
[rabbitmq_event_exchange] | ||
}, | ||
|
||
{protocol_amqp, | ||
"event_exchange.protocol = amqp_1_0", | ||
[{rabbitmq_event_exchange, [ | ||
{protocol, amqp_1_0} | ||
]}], | ||
[rabbitmq_event_exchange] | ||
}, | ||
|
||
{protocol_amqpl, | ||
"event_exchange.protocol = amqp_0_9_1", | ||
[{rabbitmq_event_exchange, [ | ||
{protocol, amqp_0_9_1} | ||
]}], | ||
[rabbitmq_event_exchange] | ||
} | ||
]. |
Oops, something went wrong.