Skip to content

Commit 057ce0f

Browse files
ryetanemeroad
authored andcommitted
[#9838] Fix wrong variable use of Range
cause:'to' here is mistakenly written as' from' affected : getServerMapDataV2.pinpoint - range - toDateTime
1 parent 748657b commit 057ce0f

File tree

1 file changed

+1
-1
lines changed
  • metric-module/metric/src/main/java/com/navercorp/pinpoint/metric/web/util

1 file changed

+1
-1
lines changed

metric-module/metric/src/main/java/com/navercorp/pinpoint/metric/web/util/Range.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public long getTo() {
5757
}
5858

5959
public String getToDateTime() {
60-
return DateTimeFormatUtils.formatSimple(from);
60+
return DateTimeFormatUtils.formatSimple(to);
6161
}
6262

6363
public long getRange() {

0 commit comments

Comments
 (0)