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 f6afb63 commit e2a7382Copy full SHA for e2a7382
xds/src/main/java/io/grpc/xds/CdsLoadBalancer2.java
@@ -178,11 +178,11 @@ public void handleNameResolutionError(Status error) {
178
public void shutdown() {
179
logger.log(XdsLogLevel.INFO, "Shutdown");
180
delegate.shutdown();
181
+ delegate = new GracefulSwitchLoadBalancer(helper);
182
if (clusterSubscription != null) {
183
clusterSubscription.close();
184
clusterSubscription = null;
185
}
- delegate = new GracefulSwitchLoadBalancer(helper);
186
187
188
@CheckReturnValue // don't forget to return up the stack after the fail call
0 commit comments