Commit 29bb39f9 authored by yanzg's avatar yanzg

修复等待时间

parent e266594f
......@@ -36,7 +36,7 @@ public class AspectUrlCountVo {
}
this.totalTime += this.endCount;
this.minTime = Math.min(time, this.minTime);
this.maxTime = Math.min(time, this.maxTime);
this.maxTime = Math.max(time, this.maxTime);
this.avgTime = this.totalTime / this.endCount;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment