Skip to content

Commit

Permalink
Fix wrong host/node name in update-config blacklist
Browse files Browse the repository at this point in the history
fixes #8181
  • Loading branch information
Michael Friedrich committed Jan 9, 2015
1 parent d2c38ef commit 0ee2a1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/nodeupdateconfigcommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ int NodeUpdateConfigCommand::Run(const boost::program_options::variables_map& vm
if (NodeUtility::CheckAgainstBlackAndWhiteList("blacklist", old_node_name, old_host, Empty) &&
!NodeUtility::CheckAgainstBlackAndWhiteList("whitelist", old_node_name, old_host, Empty)) {
Log(LogWarning, "cli")
<< "Host '" << old_node << "' on node '" << old_node << "' is blacklisted, but not whitelisted. Skipping.";
<< "Host '" << old_node_name << "' on node '" << old_node_name << "' is blacklisted, but not whitelisted. Skipping.";
continue;
}

Expand Down

0 comments on commit 0ee2a1c

Please sign in to comment.