From e098924e611b73edcd3dfac1c63004ee7f3b49f5 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 7 May 2020 20:28:41 +0100 Subject: [PATCH] fstest: change -list-retries default to 3 from 6 The integration tests have got much better about retrying the tests, and we aren't testing ACD any more so we don't need it this high. --- fstest/fstest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fstest/fstest.go b/fstest/fstest.go index ec5242895..57ad14b33 100644 --- a/fstest/fstest.go +++ b/fstest/fstest.go @@ -45,7 +45,7 @@ var ( // SizeLimit signals tests to skip maximum test file size and skip inappropriate runs SizeLimit = flag.Int64("size-limit", 0, "Limit maximum test file size") // ListRetries is the number of times to retry a listing to overcome eventual consistency - ListRetries = flag.Int("list-retries", 6, "Number or times to retry listing") + ListRetries = flag.Int("list-retries", 3, "Number or times to retry listing") // MatchTestRemote matches the remote names used for testing MatchTestRemote = regexp.MustCompile(`^rclone-test-[abcdefghijklmnopqrstuvwxyz0123456789]{24}$`) )