Skip to content

Commit

Permalink
DDEV-1965 фикс histogram value
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Davydenko committed Dec 17, 2024
1 parent b055f31 commit fadf417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/OctaneCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ private function collectHistograms(): array
$labelValues = $parts[2];
$bucket = $parts[3];
// Key by labelValues
$histogramBuckets[$labelValues][$bucket] = $value;
$histogramBuckets[$labelValues][$bucket] = $value['value'];
}

// Compute all buckets
Expand Down

0 comments on commit fadf417

Please sign in to comment.