mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-20 10:16:13 +10:00
[강운덕] [LUCYSUS-1744] spanId를 long으로 반납안하는 부분이 있어 수정.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@2746 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -14,7 +14,7 @@ public class SpanId {
|
||||
public static long newSpanId() {
|
||||
long id = seed.nextLong();
|
||||
while (id == NULL) {
|
||||
id = seed.nextInt();
|
||||
id = seed.nextLong();
|
||||
}
|
||||
return id;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user