We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e876e commit 779fc27Copy full SHA for 779fc27
dubbo-remoting/dubbo-remoting-etcd3/src/main/java/org/apache/dubbo/remoting/etcd/jetcd/JEtcdClient.java
@@ -278,7 +278,14 @@ public void unwatch() {
278
}
279
280
try {
281
- this.listener = null;
+ /**
282
+ * issue : https://github.com/apache/incubator-dubbo/issues/4115
283
+ *
284
+ * When the network is reconnected, the listener is empty
285
+ * and the data cannot be received.
286
+ */
287
+ // this.listener = null;
288
+
289
if (watchRequest != null) {
290
WatchCancelRequest watchCancelRequest =
291
WatchCancelRequest.newBuilder().setWatchId(watchId).build();
0 commit comments