Skip to content

Commit eee0383

Browse files
committed
Reduce bisectable timout
Given that this timeout is per each run, 200 is a bit too much. Each bisect query should test about 12 commits, so with the previous limit it meant that it would hang for half an hour. Now it will hang for two minutes, but that's okay.
1 parent 942ea65 commit eee0383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bisectable.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ package Bisectable;
3434
my $build_lock = abs_path('./lock');
3535

3636
sub timeout {
37-
return 200;
37+
return 10;
3838
}
3939

4040
sub process_message {

0 commit comments

Comments
 (0)