diff options
author | jonas@perch.ndb.mysql.com <> | 2007-12-03 12:43:50 +0100 |
---|---|---|
committer | jonas@perch.ndb.mysql.com <> | 2007-12-03 12:43:50 +0100 |
commit | 2d67819f74204ee3f20fb3c8967a754271e86819 (patch) | |
tree | 396dfd1b0bec00a674af9b8ca7778586993df637 /storage | |
parent | c0e331e60fffefda284edcb606917431871c49b3 (diff) | |
download | mariadb-git-2d67819f74204ee3f20fb3c8967a754271e86819.tar.gz |
ndb - bug#26457
Fix bug in bug fix, causing random test-failure
Diffstat (limited to 'storage')
-rw-r--r-- | storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp b/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp index 217c6f38ade..4d54007ee9c 100644 --- a/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp +++ b/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp @@ -5962,7 +5962,7 @@ void Dbdih::execMASTER_LCPREQ(Signal* signal) jam(); ndbout_c("resending GSN_MASTER_LCPREQ"); sendSignalWithDelay(reference(), GSN_MASTER_LCPREQ, signal, - signal->getLength(), 50); + 50, signal->getLength()); return; } Uint32 failedNodeId = req->failedNodeId; |