Skip to content

Commit f81be24

Browse files
Update src/Common/ProfileEvents.cpp
1 parent 6fd5380 commit f81be24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/ProfileEvents.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ Event end() { return END; }
11351135

11361136
bool checkCPUOverload(Int64 os_cpu_busy_time_threshold, double min_ratio, double max_ratio, bool should_throw)
11371137
{
1138-
if ((max_ratio <= 0.0) || (max_ratio <= min_ratio))
1138+
if ((max_ratio <= 0.0) || (max_ratio <= min_ratio))
11391139
return false;
11401140
double cpu_load = global_counters.getCPUOverload(os_cpu_busy_time_threshold);
11411141

0 commit comments

Comments
 (0)