Environment
- Dubbo version: xxx
- Operating System version: xxx
- Java version: xxx
Steps to reproduce this issue
org.apache.dubbo.remoting.etcd.jetcd.JEtcdClientWrapper#doClose:
if (globalLeaseId > 0) {
revokeLease(this.globalLeaseId);
}
should be change to :
if (globalLeaseId != 0) {
revokeLease(this.globalLeaseId);
}
Pls. provide [GitHub address] to reproduce this issue.
Expected Result
What do you expected from the above steps?
Actual Result
What actually happens?
If there is an exception, please attach the exception trace:
Just put your stack trace here!
Environment
Steps to reproduce this issue
org.apache.dubbo.remoting.etcd.jetcd.JEtcdClientWrapper#doClose:should be change to :
Pls. provide [GitHub address] to reproduce this issue.
Expected Result
What do you expected from the above steps?
Actual Result
What actually happens?
If there is an exception, please attach the exception trace: