Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
shiming.liu committed Oct 23, 2017
1 parent 20e2fd4 commit a836328
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,13 @@ protected Object getFallback() {
Class<?> responseType = this.request.getResponseType();
Message response = GrpcUtil.createDefaultInstance(responseType);
Object obj = this.transformMessage(response);
collect(serviceName, methodName, getRequestMessage(), response, true);
collectLogExecutor.execute(new Runnable() {

@Override
public void run() {
collect(serviceName, methodName, getRequestMessage(), response, true);
}
});
return obj;
}

Expand Down

0 comments on commit a836328

Please sign in to comment.