summaryrefslogtreecommitdiff
path: root/storage/ndb/src/ndbapi/ClusterMgr.cpp
diff options
context:
space:
mode:
authorunknown <tomas@poseidon.ndb.mysql.com>2006-07-04 17:37:44 +0200
committerunknown <tomas@poseidon.ndb.mysql.com>2006-07-04 17:37:44 +0200
commit40cfec487278e9faa13db05acef55a6230eb8213 (patch)
tree245b5dbfb55d5aa9f6af0f2d38eece159ee13a10 /storage/ndb/src/ndbapi/ClusterMgr.cpp
parentbc5c62e5a0614d8e953a2800e868a43673d266bf (diff)
downloadmariadb-git-40cfec487278e9faa13db05acef55a6230eb8213.tar.gz
Bug #20742 Assertion in drop of ndb binlog events after node restart
- make sure TE_ACTIVE event comes when node restarts so that ref counting is correct for drop of event
Diffstat (limited to 'storage/ndb/src/ndbapi/ClusterMgr.cpp')
-rw-r--r--storage/ndb/src/ndbapi/ClusterMgr.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/storage/ndb/src/ndbapi/ClusterMgr.cpp b/storage/ndb/src/ndbapi/ClusterMgr.cpp
index 63fdb73c49f..49815ae6c13 100644
--- a/storage/ndb/src/ndbapi/ClusterMgr.cpp
+++ b/storage/ndb/src/ndbapi/ClusterMgr.cpp
@@ -396,6 +396,8 @@ ClusterMgr::execNF_COMPLETEREP(const Uint32 * theData){
void
ClusterMgr::reportConnected(NodeId nodeId){
+ DBUG_ENTER("ClusterMgr::reportConnected");
+ DBUG_PRINT("info", ("nodeId: %u", nodeId));
/**
* Ensure that we are sending heartbeat every 100 ms
* until we have got the first reply from NDB providing
@@ -421,6 +423,7 @@ ClusterMgr::reportConnected(NodeId nodeId){
theNode.nfCompleteRep = true;
theFacade.ReportNodeAlive(nodeId);
+ DBUG_VOID_RETURN;
}
void