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/06/06 03:38:36 UTC

[dubbo] branch performance-tuning-2.7.x updated: test threadlessexecutor

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

liujun pushed a commit to branch performance-tuning-2.7.x
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/performance-tuning-2.7.x by this push:
     new 8f9a05a  test threadlessexecutor
8f9a05a is described below

commit 8f9a05a95d422ecb72015ff30e3e45e605cc5396
Author: ken.lj <ke...@gmail.com>
AuthorDate: Thu Jun 6 11:09:43 2019 +0800

    test threadlessexecutor
---
 .../src/main/java/org/apache/dubbo/rpc/protocol/dubbo/DubboInvoker.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dubbo-rpc/dubbo-rpc-dubbo/src/main/java/org/apache/dubbo/rpc/protocol/dubbo/DubboInvoker.java b/dubbo-rpc/dubbo-rpc-dubbo/src/main/java/org/apache/dubbo/rpc/protocol/dubbo/DubboInvoker.java
index ea7cb23..617759f 100644
--- a/dubbo-rpc/dubbo-rpc-dubbo/src/main/java/org/apache/dubbo/rpc/protocol/dubbo/DubboInvoker.java
+++ b/dubbo-rpc/dubbo-rpc-dubbo/src/main/java/org/apache/dubbo/rpc/protocol/dubbo/DubboInvoker.java
@@ -95,7 +95,7 @@ public class DubboInvoker<T> extends AbstractInvoker<T> {
                 return AsyncRpcResult.newDefaultAsyncResult(invocation);
             } else {
                 AsyncRpcResult asyncRpcResult = new AsyncRpcResult(inv);
-                ExecutorService executor = getCallbackExecutor(getUrl(), inv);
+                ExecutorService executor = null;
                 asyncRpcResult.setExecutor(executor);
                 currentClient.request(inv, timeout, executor, asyncRpcResult);
                 return asyncRpcResult;