The CI for #12141 flaked:
io.grpc.StatusRuntimeException: INTERNAL: CdsLb for cluster0: Unable to find non-dynamic root cluster
However, that is supposed to be impossible:
|
StatusOr<XdsClusterConfig> clusterConfigOr = xdsConfig.getClusters().get(clusterName); |
|
if (clusterConfigOr == null) { |
|
if (clusterSubscription == null) { |
|
// Should be impossible, because XdsDependencyManager wouldn't have generated this |
|
return fail(Status.INTERNAL.withDescription( |
|
errorPrefix() + "Unable to find non-dynamic root cluster")); |
|
} |
The CI for #12141 flaked:
However, that is supposed to be impossible:
grpc-java/xds/src/main/java/io/grpc/xds/CdsLoadBalancer2.java
Lines 89 to 95 in d88ef97