Skip to content

Commit

Permalink
Merge pull request #3880 from actiontech/inner-2390_2
Browse files Browse the repository at this point in the history
[inner-2390] fix: sqlSlowTime does not take effect
  • Loading branch information
wenyh1 authored Jun 12, 2024
2 parents d3c9581 + 34d03e4 commit f3a720b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ public SqlTraceType getType() {
}

public double getOverAllMilliSecond() {
return (double) (this.requestEnd - this.requestStart) / 1000000000;
return (double) (this.requestEnd - this.requestStart) / 1000000;
}

public String getOverAllSecond() {
Expand Down

0 comments on commit f3a720b

Please sign in to comment.