Skip to content

Commit 4d4421f

Browse files
committed
rabbit_feature_flags: Fix logging of the list of feature flags
"~~" was ok when the final string was a format string, but it's not anymore. We need a simple "~".
1 parent aa78bad commit 4d4421f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbit/src/rabbit_ff_registry_factory.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ do_initialize_registry(RegistryVsn,
396396
"Feature flags: [~ts] ~ts~n",
397397
[case maps:get(FeatureName, FeatureStates, false) of
398398
true -> "x";
399-
state_changing -> "~~";
399+
state_changing -> "~";
400400
false -> " "
401401
end,
402402
FeatureName])

0 commit comments

Comments
 (0)