From b3164a1f2690ce5480982a39216730ee6d46490e Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 4 Oct 2024 11:32:18 +0200 Subject: [PATCH] t0610.47: increase timeout The test case 'ref transaction: many concurrent writers' does take a long time on Windows, in particular since there are file-locking issues involved. Let's give it much more than 10 seconds time to wait for 99 more concurrent writers to complete their updates. Signed-off-by: Johannes Schindelin --- t/t0610-reftable-basics.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/t0610-reftable-basics.sh b/t/t0610-reftable-basics.sh index 2d951c8ceb6baf..24bf8242f2bcff 100755 --- a/t/t0610-reftable-basics.sh +++ b/t/t0610-reftable-basics.sh @@ -456,9 +456,9 @@ test_expect_success 'ref transaction: many concurrent writers' ' ( cd repo && # Set a high timeout such that a busy CI machine will not abort - # early. 10 seconds should hopefully be ample of time to make + # early. One minute should hopefully be ample of time to make # this non-flaky. - git config set reftable.lockTimeout 10000 && + git config set reftable.lockTimeout 60000 && test_commit --no-tag initial && head=$(git rev-parse HEAD) &&