Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Sep 12, 2024
1 parent 8bda2e0 commit e40f775
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions relay-server/src/services/buffer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ impl EnvelopeBufferService {
buffer: &mut PolymorphicEnvelopeBuffer,
) -> Result<(), SendError> {
relay_statsd::metric!(
counter(RelayCounters::BufferTryPop) += 1,
counter(RelayCounters::BufferReadyToPop) += 1,
status = "checking"
);

Expand All @@ -154,7 +154,7 @@ impl EnvelopeBufferService {
}

relay_statsd::metric!(
counter(RelayCounters::BufferTryPop) += 1,
counter(RelayCounters::BufferReadyToPop) += 1,
status = "checked"
);

Expand Down

0 comments on commit e40f775

Please sign in to comment.