fix: Split long line in a macro that rustfmt doesn't handle

pull/24376/head
Carol (Nichols || Goulding) 2023-03-29 13:15:28 -04:00
parent 555f2a67aa
commit 8b360e013a
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
1 changed files with 6 additions and 1 deletions

View File

@ -56,7 +56,12 @@ impl Compactor2 {
tokio::select! {
_ = shutdown_captured.cancelled() => {}
_ = async {
compact(config.partition_concurrency, config.partition_timeout, Arc::clone(&job_semaphore), &components).await;
compact(
config.partition_concurrency,
config.partition_timeout,
Arc::clone(&job_semaphore),
&components
).await;
info!("compactor done");
} => {}