Commit 0b06f9f0 authored by unknown's avatar unknown

DbtuxScan.cpp:

  fix erronous assert at scan close, lock abort


ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp:
  Scan is closing.  Lock conf is in job buffer.
  We have sent lock abort to flush it out.
  At execute conf need to RNIL current lock op
  to avoid assert fail when abort comes.
  Bug seen couple of times, hard to test..
parent e2b681e7
......@@ -602,6 +602,8 @@ Dbtux::execACCKEYCONF(Signal* signal)
// LQH has the ball
return;
}
// lose the lock
scan.m_accLockOp = RNIL;
// continue at ACC_ABORTCONF
}
......@@ -644,6 +646,8 @@ Dbtux::execACCKEYREF(Signal* signal)
// LQH has the ball
return;
}
// lose the lock
scan.m_accLockOp = RNIL;
// continue at ACC_ABORTCONF
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment