We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56ba00 commit 108afafCopy full SHA for 108afaf
src/main/java/com/alipay/oceanbase/rpc/location/model/TableRoster.java
@@ -89,7 +89,8 @@ public List<ObServerAddr> refreshTablesAndGetNewServers(List<ReplicaLocation> ne
89
90
newServers.add(addr);
91
92
- if (tables.containsKey(addr)) { // has ob table addr, continue
+ // has ob table addr and this addr is valid, continue
93
+ if (tables.containsKey(addr) && tables.get(addr).isValid()) {
94
continue;
95
}
96
0 commit comments