xhanthow opened a new issue #2054:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2054
```java
HttpClientWithContext httpClientWithContext =
findHttpClientPool(currentClientMgr, invocation);
```
```java
public CLIENT_POOL findClientPool(boolean sync, Context targetContext) {
if (sync) {
return findThreadBindClientPool();
}
// reactive mode
return findByContext(targetContext);
}
```
我们用`RestTemplate`调用微服务接口的时候,最终会触发以上代码,然后`invocation`的`sync`默认为`true`,所以最终会执行到`findThreadBindClientPool()`方法,现在就是有点搞不清楚`findThreadBindClientPool()`和`findByContext(targetContext)`的区别,感觉它们都是返回一个`context`呀
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]