[강운덕] [LUCYSUS-1744] uuid를 잘못 세팅하고 있어 수정.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1037 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2012-12-18 09:37:26 +00:00
parent 75480a22ac
commit e4d474c6aa
@@ -27,7 +27,7 @@ public class SubSpanList implements Thriftable {
tSubSpanList.setAgentId(Agent.getInstance().getAgentId());
UUID id = parentSpan.getTraceID().getId();
tSubSpanList.setMostTraceId(id.getMostSignificantBits());
tSubSpanList.setMostTraceId(id.getLeastSignificantBits());
tSubSpanList.setLeastTraceId(id.getLeastSignificantBits());
tSubSpanList.setSpanId(parentSpan.getTraceID().getSpanId());
tSubSpanList.setStartSequence(first.getSequence());