Skip to content

Commit 39323c3

Browse files
committed
fix: Double the fixture lock timeout
This increases the lock timeout used in `gix-testtools` from 3 min 6 min. This seems to fix #1605.
1 parent 612896d commit 39323c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/tools/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ fn scripted_fixture_read_only_with_args_inner(
511511

512512
let _marker = gix_lock::Marker::acquire_to_hold_resource(
513513
script_basename,
514-
gix_lock::acquire::Fail::AfterDurationWithBackoff(Duration::from_secs(3 * 60)),
514+
gix_lock::acquire::Fail::AfterDurationWithBackoff(Duration::from_secs(6 * 60)),
515515
None,
516516
)?;
517517
let failure_marker = script_result_directory.join("_invalid_state_due_to_script_failure_");

0 commit comments

Comments
 (0)