Description:
In DblqhMain.cpp:
-----------------------------------------------------------
if(arg== 2305)
{
if (ERROR_INSERTED(5085))
{
g_eventLogger->info("LQH instance %u ignoring DUMP 2305 (GCP_STOP kill)",
instance());
return;
}
CRASH_INSERTION(5087);
progError(__LINE__, NDBD_EXIT_SYSTEM_ERROR,
"Please report this as a bug. "
"Provide as much info as possible, expecially all the "
"ndb_*_out.log files, Thanks. "
"Shutting down node due to failed handling of GCP_SAVEREQ");
}
}
-----------------------------------------------------------
if(arg == 2309)
{
if (ERROR_INSERTED(5086))
{
g_eventLogger->info("LQH instance %u discards DUMP 2309",
instance());
return;
}
CRASH_INSERTION(5075);
progError(__LINE__, NDBD_EXIT_LCP_SCAN_WATCHDOG_FAIL,
"Please report this as a bug. "
"Provide as much info as possible, expecially all the "
"ndb_*_out.log files, Thanks. "
"Shutting down node due to lack of LCP fragment scan progress");
}
How to repeat:
See DblqhMain.cpp.
Suggested fix:
s/expecially/especially/g
Description: In DblqhMain.cpp: ----------------------------------------------------------- if(arg== 2305) { if (ERROR_INSERTED(5085)) { g_eventLogger->info("LQH instance %u ignoring DUMP 2305 (GCP_STOP kill)", instance()); return; } CRASH_INSERTION(5087); progError(__LINE__, NDBD_EXIT_SYSTEM_ERROR, "Please report this as a bug. " "Provide as much info as possible, expecially all the " "ndb_*_out.log files, Thanks. " "Shutting down node due to failed handling of GCP_SAVEREQ"); } } ----------------------------------------------------------- if(arg == 2309) { if (ERROR_INSERTED(5086)) { g_eventLogger->info("LQH instance %u discards DUMP 2309", instance()); return; } CRASH_INSERTION(5075); progError(__LINE__, NDBD_EXIT_LCP_SCAN_WATCHDOG_FAIL, "Please report this as a bug. " "Provide as much info as possible, expecially all the " "ndb_*_out.log files, Thanks. " "Shutting down node due to lack of LCP fragment scan progress"); } How to repeat: See DblqhMain.cpp. Suggested fix: s/expecially/especially/g