Skip to content

Commit

Permalink
make chunkserver error message display all possibilities upon receivi…
Browse files Browse the repository at this point in the history
…ng EBADCLUSTERKEY [QFS-187]
  • Loading branch information
mckurt committed Jul 26, 2016
1 parent 0754f57 commit 2c271df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/cc/chunk/MetaServerSM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2c271df

Please sign in to comment.