Skip to content

Commit 72c21eb

Browse files
committed
fix merge main
1 parent 5d26be1 commit 72c21eb

File tree

1 file changed

+5
-2
lines changed
  • crates/sync/pipeline/src

1 file changed

+5
-2
lines changed

crates/sync/pipeline/src/lib.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,11 @@ where
445445
}
446446
}
447447

448-
impl<P: ProviderFactory + 'static,
449-
<P as ProviderFactory>::ProviderMut: StageCheckpointProvider> IntoFuture for Pipeline<P> {
448+
impl<P> IntoFuture for Pipeline<P>
449+
where
450+
P: ProviderFactory + 'static,
451+
<P as ProviderFactory>::ProviderMut: StageCheckpointProvider,
452+
{
450453
type Output = PipelineResult<()>;
451454
type IntoFuture = PipelineFut;
452455

0 commit comments

Comments
 (0)