Skip to content

Commit

Permalink
chore: format Rust code
Browse files Browse the repository at this point in the history
  • Loading branch information
helanto committed Aug 28, 2024
1 parent b81a3dc commit 3f5be93
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/core/src/operations/transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,7 @@ impl CommitProperties {
}

/// Specify maximum number of times to retry the transaction before failing to commit
pub fn with_max_retries(
mut self,
max_retries: usize,
) -> Self {
pub fn with_max_retries(mut self, max_retries: usize) -> Self {
self.max_retries = max_retries;
self
}
Expand Down

0 comments on commit 3f5be93

Please sign in to comment.