This is an automated email from the ASF dual-hosted git repository.

ddanielr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 9438cc6201 adds early return for all sys tables in 
ClientTabletCacheImpl.requestTabletHosting (#5487)
9438cc6201 is described below

commit 9438cc6201ef7dd48306b82bf958a1938b682633
Author: Kevin Rathbun <krath...@apache.org>
AuthorDate: Fri Apr 18 23:05:37 2025 -0400

    adds early return for all sys tables in 
ClientTabletCacheImpl.requestTabletHosting (#5487)
---
 .../java/org/apache/accumulo/core/clientImpl/ClientTabletCacheImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/clientImpl/ClientTabletCacheImpl.java
 
b/core/src/main/java/org/apache/accumulo/core/clientImpl/ClientTabletCacheImpl.java
index f382be10cf..070c51425d 100644
--- 
a/core/src/main/java/org/apache/accumulo/core/clientImpl/ClientTabletCacheImpl.java
+++ 
b/core/src/main/java/org/apache/accumulo/core/clientImpl/ClientTabletCacheImpl.java
@@ -632,7 +632,7 @@ public class ClientTabletCacheImpl extends 
ClientTabletCache {
     }
 
     // System tables should always be hosted
-    if (AccumuloTable.ROOT.tableId() == tableId || 
AccumuloTable.METADATA.tableId() == tableId) {
+    if (AccumuloTable.allTableIds().contains(tableId)) {
       return;
     }
 

Reply via email to