From 4da183c691d3bd85ead78bb3a7552645db25d170 Mon Sep 17 00:00:00 2001 From: Woonduk Kang Date: Mon, 4 Nov 2013 08:39:25 +0000 Subject: [PATCH] =?UTF-8?q?[=EA=B0=95=EC=9A=B4=EB=8D=95]=20[LUCYSUS-1744]?= =?UTF-8?q?=20spanId=EB=A5=BC=20long=EC=9C=BC=EB=A1=9C=20=EB=B0=98?= =?UTF-8?q?=EB=82=A9=EC=95=88=ED=95=98=EB=8A=94=20=EB=B6=80=EB=B6=84?= =?UTF-8?q?=EC=9D=B4=20=EC=9E=88=EC=96=B4=20=EC=88=98=EC=A0=95.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@2746 84d0f5b1-2673-498c-a247-62c4ff18d310 --- src/main/java/com/nhn/pinpoint/profiler/context/SpanId.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/nhn/pinpoint/profiler/context/SpanId.java b/src/main/java/com/nhn/pinpoint/profiler/context/SpanId.java index a986f4d34..239960481 100644 --- a/src/main/java/com/nhn/pinpoint/profiler/context/SpanId.java +++ b/src/main/java/com/nhn/pinpoint/profiler/context/SpanId.java @@ -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; }