Skip to content

Commit

Permalink
fix: typo in thread name (#13555)
Browse files Browse the repository at this point in the history
  • Loading branch information
hai-rise authored Dec 25, 2024
1 parent 3fbb230 commit 14c1c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/storage/libmdbx-rs/src/txn_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl TxnManager {
}
}
};
std::thread::Builder::new().name("mbdx-rs-txn-manager".to_string()).spawn(task).unwrap();
std::thread::Builder::new().name("mdbx-rs-txn-manager".to_string()).spawn(task).unwrap();
}

pub(crate) fn send_message(&self, message: TxnManagerMessage) {
Expand Down

0 comments on commit 14c1c0b

Please sign in to comment.