Skip to content

Commit

Permalink
Error message update
Browse files Browse the repository at this point in the history
  • Loading branch information
yisheng-zhou committed Oct 15, 2024
1 parent 6489b7e commit 2fd308d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ public void sense(MemqCluster cluster) throws Exception {
} catch (KeeperException.NoNodeException e) {
cluster.getNodeMap().remove(brokerName);
logger.info(
"Broker data of " + brokerName + " is not available in zookeeper. It may have been removed.");
"Broker data of " + brokerName + " is not available in zookeeper. The broker might be removed.");
continue;
} catch (Exception e) {
logger.severe(
"Face unknown exception when getting broker data for " + brokerName +" from zookeeper:" + e);
"Faced an unknown exception when getting broker data for " + brokerName +" from zookeeper:" + e);
continue;
}
Broker broker = gson.fromJson(new String(brokerData), Broker.class);
Expand Down

0 comments on commit 2fd308d

Please sign in to comment.