Skip to content

Commit

Permalink
DDEV-1965 fix after hashing key
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Davydenko committed Nov 19, 2024
1 parent eabdcc1 commit ec13382
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 @@ -175,7 +175,7 @@ public function updateGauge(array $data): void
];
}

$gaugeValue = $this->gaugeValues->get($valueKey);
$gaugeValue = $this->gaugeValues->get($valueKeyHash);
if (!$gaugeValue) {
$metaKeyValue['valueKeys'] = $this->implodeKeysString($metaKeyValue['valueKeys'], $valueKeyHash);
$gaugeValue = [
Expand Down

0 comments on commit ec13382

Please sign in to comment.