Skip to content

Commit

Permalink
Fix path in TableZooHelper when clearing ZooCache entry
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmarion committed Jan 17, 2025
1 parent 22831aa commit 9cd5c39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public TableState getTableState(TableId tableId, boolean clearCachedState) {
String statePath = context.getZooKeeperRoot() + Constants.ZTABLES + "/" + tableId.canonical()
+ Constants.ZTABLE_STATE;
if (clearCachedState) {
context.getZooCache().clear(context.getZooKeeperRoot() + statePath);
context.getZooCache().clear(statePath);
instanceToMapCache.invalidateAll();
}
ZooCache zc = context.getZooCache();
Expand Down

0 comments on commit 9cd5c39

Please sign in to comment.