szd1993 opened a new issue #8720:
URL: https://github.com/apache/dubbo/issues/8720


   when consumer starting , it will get all dubbo node from zookeeper, then 
"Packet len is out of range"
   
   why not only get  node that with @DubboReference 
   
   just for less request ? 
   
   ```java
       void readLength() throws IOException {
           int len = this.incomingBuffer.getInt();
           if (len >= 0 && len < this.packetLen) {
               this.incomingBuffer = ByteBuffer.allocate(len);
           } else {
               throw new IOException("Packet len" + len + " is out of range!");
           }
       }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



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

Reply via email to