From a722cf659b8d32dcaba918600bf8d54c584a7589 Mon Sep 17 00:00:00 2001 From: Justin Hiemstra Date: Thu, 21 Nov 2024 15:30:23 +0000 Subject: [PATCH] Try ridiculously long ctx timeout to see if this affects anything --- local_cache/cache_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local_cache/cache_test.go b/local_cache/cache_test.go index b03654a1d..784086b97 100644 --- a/local_cache/cache_test.go +++ b/local_cache/cache_test.go @@ -377,7 +377,7 @@ func TestLargeFile(t *testing.T) { ft := fed_test_utils.NewFedTest(t, pubOriginCfg) // Set a custom timeout for this test to see if we can make it less flaky - ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute) + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Minute) ctx, cancelTest, egrp := test_utils.TestContext(ctx, t) te, err := client.NewTransferEngine(ctx)