Commit f4e01cf6 authored by unknown's avatar unknown

ndb - bug#18475

  Fix error message on copyfragref


ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp:
  Fix error message
parent bb285b44
...@@ -177,13 +177,12 @@ void Ndbcntr::execSYSTEM_ERROR(Signal* signal) ...@@ -177,13 +177,12 @@ void Ndbcntr::execSYSTEM_ERROR(Signal* signal)
"the state of a fragment scan was out of sync.", "the state of a fragment scan was out of sync.",
killingNode); killingNode);
break; break;
case SystemError::CopyFragRefError: case SystemError::CopyFragRefError:
BaseString::snprintf(buf, sizeof(buf), BaseString::snprintf(buf, sizeof(buf),
"Node %d killed this node because " "Killed by node %d as "
"it could not copy a fragment during node restart. " "copyfrag failed, error: %u",
"Copy fragment error code: %u.", killingNode, data1);
killingNode, data1);
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment