Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 committed Feb 19, 2024
1 parent 936be26 commit 1cf2e1c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/compute/src/rpc/service/stream_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ impl StreamService for StreamServiceImpl {
{
Ok(result) => result,
Err(e) => {
return Err(self.try_get_root_actor_failure().await.unwrap_or(e).into());
let err = self.try_get_root_actor_failure().await.unwrap_or(e);
tracing::error!(error = %err.as_report(), "failed to collect barrier");
return Err(err.into());
}
};

Expand Down

0 comments on commit 1cf2e1c

Please sign in to comment.