From 2c271df83f418e990f07500f99b5d8261c94974d Mon Sep 17 00:00:00 2001 From: Mehmet Can Kurt Date: Mon, 25 Jul 2016 14:09:32 -0700 Subject: [PATCH] make chunkserver error message display all possibilities upon receiving EBADCLUSTERKEY [QFS-187] --- src/cc/chunk/MetaServerSM.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/cc/chunk/MetaServerSM.cc b/src/cc/chunk/MetaServerSM.cc index b850dcfb5..2ddcd7168 100644 --- a/src/cc/chunk/MetaServerSM.cc +++ b/src/cc/chunk/MetaServerSM.cc @@ -700,8 +700,10 @@ MetaServerSM::HandleReply(IOBuffer& iobuf, int msgLen) if (mHelloOp) { if (status == -EBADCLUSTERKEY) { KFS_LOG_STREAM_FATAL << - "exiting due to cluster key mismatch; our key: " << - mClusterKey << + "exiting due to cluster key mismatch," << + " or md5sum mismatch;" << + " our key: " << mClusterKey << + " our md5sum: " << mMD5Sum << KFS_LOG_EOM; globalNetManager().Shutdown(); return false;