We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hold reconfig lock while handling transaction (#19320) · MystenLabs/sui@7c9b1d1
bug fix.
The text was updated successfully, but these errors were encountered:
Hold reconfig lock while handling transaction (#4684)
dadfe37
This fixes a crash where we clear all pending locks at reconfig (https://github.com/MystenLabs/sui/blob/dec33d0a303a7f83e778fcc5a136ab9776162e68/crates/sui-core/src/execution_cache/object_locks.rs#L121) while trying to acquire locks for a transaction. Without this fix, the node can reconfigure while we are trying to acquire locks for a transaction. If `clear_locks()` linked above is called while we are trying to call `clear_cached_locks` at https://github.com/MystenLabs/sui/blob/74d6d564970406e1b3191a07cf207af1ab6b3356/crates/sui-core/src/execution_cache/object_locks.rs#L245, we hit the panic at https://github.com/MystenLabs/sui/blob/74d6d564970406e1b3191a07cf207af1ab6b3356/crates/sui-core/src/execution_cache/object_locks.rs#L160
fix(node): Hold reconfig lock while handling transaction (#4684) (#4932)
d335cd3
gokhan-simsek-iota
Successfully merging a pull request may close this issue.
Hold reconfig lock while handling transaction (#19320) · MystenLabs/sui@7c9b1d1
bug fix.
The text was updated successfully, but these errors were encountered: