Skip to content

Commit

Permalink
Fixed bug in TSC invalidate()
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Alfonsi <[email protected]>
  • Loading branch information
Peter Alfonsi committed Apr 15, 2024
1 parent 324564c commit 2ca8036
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ public void invalidate(ICacheKey<K> key) {
List<String> dimensionValues = addTierValueToDimensionValues(key.dimensions, pair.v2());
statsHolder.removeDimensions(dimensionValues);
}
pair.v1().invalidate(key);
if (key.key != null) {
pair.v1().invalidate(key);
}
}
}
}
Expand Down

0 comments on commit 2ca8036

Please sign in to comment.