Skip to content

Commit

Permalink
Merge pull request #3618 from wiktork/dev/wiktork/prFeedback
Browse files Browse the repository at this point in the history
Fix issue with empty quantiles
  • Loading branch information
wiktork authored Jan 27, 2023
2 parents 4970332 + ba1fac5 commit 2c1beab
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ private static void HandleHistogram(TraceEvent obj, CounterFilter filter, string

if (string.IsNullOrEmpty(quantilesText))
{
return;
}

IList<(double, double)> quantiles = ParseQuantiles(quantilesText);
Expand Down

0 comments on commit 2c1beab

Please sign in to comment.