Commit d503cb84 authored by XiaoFu's avatar XiaoFu Committed by Lemon

fix TraceSegmentRef code error (#105)

as title
parent db805383
......@@ -92,7 +92,7 @@ namespace SkyWalking.Context.Trace
int.TryParse(entryOperationName, out _entryOperationId);
}
string parentOperationName = contextSnapshot.EntryOperationName;
string parentOperationName = contextSnapshot.ParentOperationName;
if (parentOperationName.First() == '#')
{
_parentOperationName = parentOperationName.Substring(1);
......@@ -173,4 +173,4 @@ namespace SkyWalking.Context.Trace
return traceSegmentReference;
}
}
}
\ No newline at end of file
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment