Cannot reproduce this produce this problem with the latest code. BTW, I found that the trace context cannot propagate. because the dubbo plugin propagate trace context through the [RPCContext](https://github.com/apache/incubator-skywalking/blob/master/apm-sniffer/apm-sdk-plugin/dubbo-plugin/src/main/java/org/apache/skywalking/apm/plugin/dubbo/DubboInterceptor.java#L59).
> RpcContext.getContext().setAttachments(rpcContext.getAttachments()); The `RPCContext.getAttachments` method get `attachments` value from threadLocal. and Hystrix will execute `run` method in an new thread, **Not in main thread**, so current Hystrix filter cannot propagate the trace context. To resolve this problem. You should pass the `attachments` arguments. Not `RPCContext` [ Full content available at: https://github.com/apache/incubator-skywalking/issues/1423 ] This message was relayed via gitbox.apache.org for [email protected]
