We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c1519 commit 44e50d0Copy full SHA for 44e50d0
1 file changed
core/mvcc/database/mod.rs
@@ -1397,7 +1397,9 @@ impl<Clock: LogicalClock> CommitStateMachine<Clock> {
1397
let _ = state_machine
1398
.lock()
1399
.inner_mut()
1400
- .cleanup_after_external_io_error(LimboError::InternalError("mvcc: cleanup_unfinished_commit".to_string()))
+ .cleanup_after_external_io_error(LimboError::InternalError(
1401
+ "mvcc: cleanup_unfinished_commit".to_string(),
1402
+ ))
1403
.inspect_err(|e| tracing::error!("cleanup_after_external_io_error failed: {e}"));
1404
}
1405
0 commit comments