diff options
author | stewart@mysql.com <> | 2005-06-16 14:21:48 +1000 |
---|---|---|
committer | stewart@mysql.com <> | 2005-06-16 14:21:48 +1000 |
commit | ec26af487dd78a5a0e4578dae4d71faf2ba3bd07 (patch) | |
tree | b5bbe0376617371c77566401b3db5b45538864f5 /ndb | |
parent | c7f9c0d871ef79cd8ed3b0e3241f7a02507c0224 (diff) | |
download | mariadb-git-ec26af487dd78a5a0e4578dae4d71faf2ba3bd07.tar.gz |
fix debug string in TR::report_disconnect
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/common/transporter/TransporterRegistry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/common/transporter/TransporterRegistry.cpp b/ndb/src/common/transporter/TransporterRegistry.cpp index e636766560b..3776bce7452 100644 --- a/ndb/src/common/transporter/TransporterRegistry.cpp +++ b/ndb/src/common/transporter/TransporterRegistry.cpp @@ -1208,7 +1208,7 @@ TransporterRegistry::report_connect(NodeId node_id) void TransporterRegistry::report_disconnect(NodeId node_id, int errnum) { - DBUG_ENTER("TransporterRegistry::report_connect"); + DBUG_ENTER("TransporterRegistry::report_disconnect"); DBUG_PRINT("info",("performStates[%d]=DISCONNECTED",node_id)); performStates[node_id] = DISCONNECTED; reportDisconnect(callbackObj, node_id, errnum); |