mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-22 03:06:26 +10:00
[강운덕] [LUCYSUS-1744] spanid, parentSpanid를 long에서 int로 변경함.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1146 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -27,7 +27,7 @@ public class SubSpan implements Thriftable {
|
||||
|
||||
private final List<HippoAnnotation> annotations = new ArrayList<HippoAnnotation>(5);
|
||||
|
||||
private long nextSpanId = -1;
|
||||
private int nextSpanId = -1;
|
||||
private int depth = -1;
|
||||
|
||||
public SubSpan(Span parentSpan) {
|
||||
@@ -122,11 +122,11 @@ public class SubSpan implements Thriftable {
|
||||
this.depth = depth;
|
||||
}
|
||||
|
||||
public long getNextSpanId() {
|
||||
public int getNextSpanId() {
|
||||
return nextSpanId;
|
||||
}
|
||||
|
||||
public void setNextSpanId(long nextSpanId) {
|
||||
public void setNextSpanId(int nextSpanId) {
|
||||
this.nextSpanId = nextSpanId;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user