summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <mklishin@pivotal.io>2019-10-08 16:19:04 -0500
committerMichael Klishin <mklishin@pivotal.io>2019-10-08 16:24:03 -0500
commit2c31435468f165b894fd03f38223e32b0ebba77e (patch)
tree6a00f0a3bd5d52caa995b1af1c8d18b4027b4626
parentb165835f53635ba9d390ae359ef3247206e4e9af (diff)
downloadrabbitmq-server-git-2c31435468f165b894fd03f38223e32b0ebba77e.tar.gz
Improve on #2133 wording a bit
-rw-r--r--src/rabbit_feature_flags.erl7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/rabbit_feature_flags.erl b/src/rabbit_feature_flags.erl
index 066a3db0a4..15ba110a00 100644
--- a/src/rabbit_feature_flags.erl
+++ b/src/rabbit_feature_flags.erl
@@ -2277,11 +2277,10 @@ on_load() ->
%% rabbit.feature_flags_file would not be set in unit tests. MK.
case code:is_loaded(eunit) of
false ->
- "Refusing to load '" ?MODULE_STRING "' in what appears to "
- "be a pre-feature-flags running node "
+ "Refusing to load '" ?MODULE_STRING "' on this node. It appears to "
+ "be a pre-feature-flags version "
"(" ++ Vsn ++ "). This is fine: it is "
- "probably a remote node querying this node for its feature "
- "flags.";
+ "probably a remote feature flag-enabled node querying our capabilities.";
{file, _} -> ok;
_ -> ok
end