Skip to content

Commit

Permalink
Web MQTT command_SUITE: skip in mixed version mode
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Mar 17, 2024
1 parent e170bbf commit 5ddc16f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion deps/rabbitmq_web_mqtt/test/command_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ end_per_suite(Config) ->
init_per_group(unit, Config) ->
Config;
init_per_group(Group, Config) ->
rabbit_ct_helpers:set_config(Config, {mqtt_version, Group}).
case rabbit_ct_helpers:is_mixed_versions() of
true ->
{skip, "mixed version clusters are not supported"};
_ ->
rabbit_ct_helpers:set_config(Config, {mqtt_version, Group})
end.

end_per_group(_, Config) ->
Config.
Expand Down

0 comments on commit 5ddc16f

Please sign in to comment.