We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6dd49e commit a22ee85Copy full SHA for a22ee85
src/main/java/com/alipay/remoting/rpc/RpcInvokeCallbackListener.java
@@ -126,10 +126,9 @@ public void run() {
126
oldClassLoader = Thread.currentThread().getContextClassLoader();
127
Thread.currentThread().setContextClassLoader(future.getAppClassLoader());
128
}
129
-
+ response.setInvokeContext(future.getInvokeContext());
130
Object responseObj = RpcResponseResolver.resolveResponseObject(response,
131
this.remoteAddress);
132
- response.setInvokeContext(future.getInvokeContext());
133
try {
134
callback.onResponse(responseObj);
135
} catch (Throwable e) {
0 commit comments