Skip to content

Commit e53a857

Browse files
committed
Tweak timeout
1 parent 864885d commit e53a857

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/statistics.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ fn get_lines_changed(
515515
// Exponential backoff (in expectation) with jitter
516516
item.delay +=
517517
std.crypto.random.intRangeAtMost(i64, 2, item.delay);
518-
item.delay = @min(item.delay, 240);
518+
item.delay = @min(item.delay, 600);
519519
try q.add(item);
520520
},
521521
else => |status| {

0 commit comments

Comments
 (0)