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 ba4bd06 commit 7236f5dCopy full SHA for 7236f5d
deps/rabbitmq_mqtt/test/java_SUITE.erl
@@ -67,8 +67,13 @@ init_per_group(Group, Config0) ->
67
[fun merge_app_env/1] ++
68
rabbit_ct_broker_helpers:setup_steps() ++
69
rabbit_ct_client_helpers:setup_steps()),
70
- util:enable_plugin(Config1, rabbitmq_mqtt),
71
- Config1.
+ case Config1 of
+ _ when is_list(Config1) ->
72
+ util:enable_plugin(Config1, rabbitmq_mqtt),
73
+ Config1;
74
+ {skip, _} ->
75
+ Config1
76
+ end.
77
78
end_per_group(_, Config) ->
79
rabbit_ct_helpers:run_teardown_steps(Config,
0 commit comments