We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ca862 commit 0d298cfCopy full SHA for 0d298cf
deps/rabbitmq_mqtt/test/cluster_SUITE.erl
@@ -85,8 +85,13 @@ init_per_testcase(Testcase, Config) ->
85
[fun merge_app_env/1] ++
86
setup_steps() ++
87
rabbit_ct_client_helpers:setup_steps()),
88
- util:enable_plugin(Config2, rabbitmq_mqtt),
89
- Config2.
+ case Config2 of
+ _ when is_list(Config2) ->
90
+ util:enable_plugin(Config2, rabbitmq_mqtt),
91
+ Config2;
92
+ {skip, _} ->
93
+ Config2
94
+ end.
95
96
end_per_testcase(Testcase, Config) ->
97
rabbit_ct_helpers:run_steps(Config,
0 commit comments