Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yezizp2012 committed Feb 22, 2024
1 parent ee60ab8 commit 61081e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/src/barrier/recovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl GlobalBarrierManagerContext {
tokio::spawn(async move {
let res: MetaResult<()> = try {
tracing::debug!("recovering stream job {}", table.id);
finished.await.context("failed to finish command")??;
finished.await.ok().context("failed to finish command")??;

tracing::debug!("finished stream job {}", table.id);
// Once notified that job is finished we need to notify frontend.
Expand Down

0 comments on commit 61081e4

Please sign in to comment.