-
Notifications
You must be signed in to change notification settings - Fork 26.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Dubbo-2999] Fixes #2999 #3180
[Dubbo-2999] Fixes #2999 #3180
Conversation
Reviewers please pay special attention to the method if (first) {
first = false;
Set<String> keys = jedis.keys(service);
if (keys != null && !keys.isEmpty()) {
for (String s : keys) {
doNotify(jedis, s);
}
}
resetSkip();
} the |
Codecov Report
@@ Coverage Diff @@
## master #3180 +/- ##
============================================
+ Coverage 63.63% 63.63% +<.01%
Complexity 75 75
============================================
Files 652 653 +1
Lines 28200 28191 -9
Branches 4781 4784 +3
============================================
- Hits 17944 17939 -5
+ Misses 8005 7979 -26
- Partials 2251 2273 +22
Continue to review full report at Codecov.
|
Please look at this issue.#1917 |
...gistry/dubbo-registry-redis/src/main/java/org/apache/dubbo/registry/redis/RedisRegistry.java
Show resolved
Hide resolved
...gistry/dubbo-registry-redis/src/main/java/org/apache/dubbo/registry/redis/RedisRegistry.java
Show resolved
Hide resolved
@CrazyHZM @kezhenxu94 |
...gistry/dubbo-registry-redis/src/main/java/org/apache/dubbo/registry/redis/RedisRegistry.java
Show resolved
Hide resolved
...gistry/dubbo-registry-redis/src/main/java/org/apache/dubbo/registry/redis/RedisRegistry.java
Outdated
Show resolved
Hide resolved
Thanks @carryxyh and @lixiaojiee for reviewing, I've added more comments in the updated commits. |
Ping @kezhenxu94 . Conflict happens after merging a previous commit. Please rebase the branch against master and push it back again. Thanks a lot. |
1 similar comment
Ping @kezhenxu94 . Conflict happens after merging a previous commit. Please rebase the branch against master and push it back again. Thanks a lot. |
What is the purpose of the change
fixes #2999
Brief changelog
XXXXX
Verifying this change
XXXXX
Follow this checklist to help us incorporate your contribution quickly and easily:
[Dubbo-XXX] Fix UnknownException when host config not exist #XXX
. Each commit in the pull request should have a meaningful subject line and body.mvn clean install -DskipTests=false
&mvn clean test-compile failsafe:integration-test
to make sure unit-test and integration-test pass.