Skip to content

Commit e798b13

Browse files
fix: resolve issue updating providers
Signed-off-by: Brooks Townsend <brooksmtownsend@gmail.com>
1 parent b997d8b commit e798b13

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/storage/reaper.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,9 @@ impl<S: Store + Clone + Send + Sync + 'static> Undertaker<S> {
112112
continue;
113113
}
114114
};
115-
// Reap actors and providers simultaneously
116-
futures::join!(self.reap_actors(&hosts), self.reap_providers(&hosts));
115+
// Reap actors and providers
116+
self.reap_actors(&hosts).await;
117+
self.reap_providers(&hosts).await;
117118
trace!("Completed reap tasks");
118119
}
119120
}

0 commit comments

Comments
 (0)