Skip to content

Commit 0e9e45e

Browse files
committed
fix compress func
1 parent 34dab01 commit 0e9e45e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def select_best_try_per_task(task_stats):
230230
def get_worker_ip_port_from_key(key):
231231
return ':'.join(key.split(':')[:-1])
232232

233-
def compress_time_based_critical_points(points, max_points=100000):
233+
def compress_time_based_critical_points(points, max_points=10000):
234234
if len(points) <= max_points:
235235
return points
236236

0 commit comments

Comments
 (0)