fix: Split long line in a macro that rustfmt doesn't handle
parent
555f2a67aa
commit
8b360e013a
|
@ -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");
|
||||
} => {}
|
||||
|
|
Loading…
Reference in New Issue