Skip to content

Commit

Permalink
Drop trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
julianocosta89 committed Dec 13, 2024
1 parent 40769c5 commit 1ce5e73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cartservice/src/cartstore/ValkeyCartStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class ValkeyCartStore : ICartStore
"app.cart.add_item.latency",
advice: new InstrumentAdvice<long>
{
HistogramBucketBoundaries = [ 500000, 600000, 700000, 800000, 900000, 1000000, 1100000 ]
HistogramBucketBoundaries = [ 500000, 600000, 700000, 800000, 900000, 1000000, 1100000 ]
}
);
private static readonly Histogram<long> getCartHistogram =
Expand All @@ -42,7 +42,7 @@ public class ValkeyCartStore : ICartStore
"app.cart.get_cart.latency",
advice: new InstrumentAdvice<long>
{
HistogramBucketBoundaries = [ 300000, 400000, 500000, 600000, 700000, 800000, 900000 ]
HistogramBucketBoundaries = [ 300000, 400000, 500000, 600000, 700000, 800000, 900000 ]
}
);

Expand Down

0 comments on commit 1ce5e73

Please sign in to comment.