Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`rabbit` is not a plugin. ``` make run-broker RABBITMQ_ENABLED_PLUGINS=rabbit rabbitmq-plugins enable rabbitmq_amqp1_0 Enabling plugins on node rabbit@nuc: rabbitmq_amqp1_0 Error: {:plugins_not_found, [:rabbit]} ``` Instead, we want: ``` make run-broker LEAVE_PLUGINS_DISABLED=1 rabbitmq-plugins enable rabbitmq_amqp1_0 Enabling plugins on node rabbit@nuc: rabbitmq_amqp1_0 The following plugins have been configured: rabbitmq_amqp1_0 Applying plugin configuration to rabbit@nuc... The following plugins have been enabled: rabbitmq_amqp1_0 started 1 plugins. ``` This commit allows enabling plugins on the old node in mixed version tests from tests in app `rabbit`. Previously this failed with above error: ``` {:plugins_not_found, [:rabbit]} ``` This feature will be needed for branch native-amqp which needs to enable the AMQP 1.0 plugin on the old node in tests of app `rabbit` (since the plugin on the new node moved to `rabbit`). (cherry picked from commit 1d6a792)
- Loading branch information