Skip to content

Commit

Permalink
chore: fix tenant ID log
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed Oct 18, 2023
1 parent 0339004 commit beb9314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/push_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ pub async fn handler(
Ok(response)
}

#[instrument(skip_all, fields(tenant_id, client_id = id, id = body.id))]
#[instrument(name = "push_message_internal", skip_all, fields(tenant_id = tenant_id, client_id = id, id = body.id))]
pub async fn handler_internal(
Path((tenant_id, id)): Path<(String, String)>,
StateExtractor(state): StateExtractor<Arc<AppState>>,
Expand Down

0 comments on commit beb9314

Please sign in to comment.