mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
BUG#25741 AllocNodeIdRef::NodeFailureHandlingNotCompleted
This commit is contained in:
parent
cfbb8672ab
commit
9e9df36d8e
2 changed files with 3 additions and 2 deletions
|
@ -2127,7 +2127,8 @@ MgmtSrvr::alloc_node_id_req(NodeId free_node_id, enum ndb_mgm_node_type type)
|
|||
const AllocNodeIdRef * const ref =
|
||||
CAST_CONSTPTR(AllocNodeIdRef, signal->getDataPtr());
|
||||
if (ref->errorCode == AllocNodeIdRef::NotMaster ||
|
||||
ref->errorCode == AllocNodeIdRef::Busy)
|
||||
ref->errorCode == AllocNodeIdRef::Busy ||
|
||||
ref->errorCode == AllocNodeIdRef::NodeFailureHandlingNotCompleted)
|
||||
{
|
||||
do_send = 1;
|
||||
nodeId = refToNode(ref->masterRef);
|
||||
|
|
|
@ -470,7 +470,7 @@ ErrorBundle ErrorCodes[] = {
|
|||
{ 1700, DMEC, IE, "Undefined error" },
|
||||
{ 1701, DMEC, AE, "Node already reserved" },
|
||||
{ 1702, DMEC, AE, "Node already connected" },
|
||||
{ 1703, DMEC, AE, "Node failure handling not completed" },
|
||||
{ 1703, DMEC, IT, "Node failure handling not completed" },
|
||||
{ 1704, DMEC, AE, "Node type mismatch" },
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue