I re-examine the code, and I apologize for my mis-interpretation for 

```java
            if (invokerUrls.isEmpty() && this.cachedInvokerUrls != null) {
                invokerUrls.addAll(this.cachedInvokerUrls);
            } else {
                this.cachedInvokerUrls = new HashSet<URL>();
                this.cachedInvokerUrls.addAll(invokerUrls);//Cached invoker 
urls, convenient for comparison
            }
            if (invokerUrls.isEmpty()) {
                return;
            }
``` 

Dubbo doesn't have protection mechanism when empty set of addresses is pushed. 
We should consider it. 

[ Full content available at: 
https://github.com/apache/incubator-dubbo/issues/1508 ]
This message was relayed via gitbox.apache.org for 
[email protected]

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to