Skip to content

Commit

Permalink
fix: print server handle error
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed Jan 16, 2025
1 parent 459a3bd commit 1e607a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/flow/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ impl flow_server::Flow for FlowService {
self.manager
.handle(request)
.await
.map_err(|err| {
common_telemetry::error!(err; "Failed to handle flow request");
err
})
.map(Response::new)
.map_err(to_status_with_last_err)
}
Expand Down

0 comments on commit 1e607a7

Please sign in to comment.