This commit is contained in:
Half-Shot 2024-02-08 11:41:52 +00:00
parent 6649143ee5
commit 149ca517c7

View File

@ -28,7 +28,11 @@ pub struct QueueWithBackoff {
impl Default for QueueWithBackoff {
fn default() -> Self {
Self::new(DEFAULT_BACKOFF_TIME_MS, DEFAULT_BACKOFF_POW, DEFAULT_BACKOFF_TIME_MAX_MS)
Self::new(
DEFAULT_BACKOFF_TIME_MS,
DEFAULT_BACKOFF_POW,
DEFAULT_BACKOFF_TIME_MAX_MS,
)
}
}
#[napi]