You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`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`).
0 commit comments