You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2019/03/20 12:04:25 UTC

[incubator-dubbo] branch master updated: fix-3678 (#3681)

This is an automated email from the ASF dual-hosted git repository.

lixiaojie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new da69a9c  fix-3678 (#3681)
da69a9c is described below

commit da69a9c8db15b6047cb80ed3d2251215784dcb0e
Author: kexianjun <ke...@hotmail.com>
AuthorDate: Wed Mar 20 20:04:16 2019 +0800

    fix-3678 (#3681)
---
 .../org/apache/dubbo/remoting/exchange/support/DefaultFuture.java     | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/exchange/support/DefaultFuture.java b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/exchange/support/DefaultFuture.java
index 059fdaa..290d668 100644
--- a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/exchange/support/DefaultFuture.java
+++ b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/exchange/support/DefaultFuture.java
@@ -329,9 +329,7 @@ public class DefaultFuture implements ResponseFuture {
         lock.lock();
         try {
             response = res;
-            if (done != null) {
-                done.signal();
-            }
+            done.signalAll();
         } finally {
             lock.unlock();
         }