MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / initial_backoff

Method initial_backoff

src/ore/src/retry.rs:117–120  ·  view source on GitHub ↗

Sets the initial backoff for the retry operation. The initial backoff is the amount of time to wait if the first try fails.

(mut self, initial_backoff: Duration)

Source from the content-addressed store, hash-verified

115 /// The initial backoff is the amount of time to wait if the first try
116 /// fails.
117 pub fn initial_backoff(mut self, initial_backoff: Duration) -> Self {
118 self.initial_backoff = initial_backoff;
119 self
120 }
121
122 /// Clamps the maximum backoff for the retry operation.
123 ///

Callers 15

test_retry_successFunction · 0.80
test_retry_async_successFunction · 0.80
test_retry_fatalFunction · 0.80
test_retry_async_fatalFunction · 0.80
write_to_persistMethod · 0.80
dump_relationMethod · 0.80

Calls

no outgoing calls