Skip to content

Commit

Permalink
[ISSUE apache#4612] fix trace not complete (apache#6404)
Browse files Browse the repository at this point in the history
  • Loading branch information
panzhi33 authored and ChineseTony committed Mar 9, 2024
1 parent db4c7da commit 505b656
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,14 @@ public int compareTo(TraceContext o) {
return Long.compare(this.timeStamp, o.getTimeStamp());
}

public AccessChannel getAccessChannel() {
return accessChannel;
}

public void setAccessChannel(AccessChannel accessChannel) {
this.accessChannel = accessChannel;
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder(1024);
Expand Down

0 comments on commit 505b656

Please sign in to comment.