Fix the span cannot stop when forward request (#2820)

This commit is contained in:
Xin,Zhang 2019-06-04 17:38:50 +08:00 committed by 吴晟 Wu Sheng
parent 1f7125a02e
commit 3217ff1444
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public class ForwardInterceptor implements InstanceMethodsAroundInterceptor, Ins
@Override
public Object afterMethod(EnhancedInstance objInst, Method method, Object[] allArguments, Class<?>[] argumentsTypes,
Object ret) throws Throwable {
ContextManager.getRuntimeContext().remove(Constants.FORWARD_REQUEST_FLAG);
return ret;
}