Skip to content

Commit

Permalink
Fix the logging of results message sizes (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
ayazhafiz authored Jan 17, 2024
1 parent 3f5ef01 commit c7f21d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/abq_queue/src/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2279,7 +2279,7 @@ impl QueueServer {
Ok(())
}

#[instrument(level = "info", skip_all, fields(run_id, entity, results_message_size))]
#[instrument(level = "info", skip_all, fields(run_id=%run_id, entity=?entity, results_message_size=%results_message_size))]
async fn handle_worker_results(
queues: SharedRuns,
persist_results: SharedPersistResults,
Expand Down

0 comments on commit c7f21d7

Please sign in to comment.