From f0e79a982cb5b7526c1158241345ef880e945d31 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 2 Oct 2023 16:55:33 -0400 Subject: [PATCH] Increase allowable timeout on memdb panic test CI runner can be slower and cause this to timeout Fixes #1560 --- internal/datastore/memdb/memdb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/datastore/memdb/memdb_test.go b/internal/datastore/memdb/memdb_test.go index a484dece16..339aa9eb66 100644 --- a/internal/datastore/memdb/memdb_test.go +++ b/internal/datastore/memdb/memdb_test.go @@ -76,7 +76,7 @@ func TestConcurrentWritePanic(t *testing.T) { return g.Wait() }) return numPanics > 0 - }, 1*time.Second, 10*time.Millisecond) + }, 3*time.Second, 10*time.Millisecond) require.ErrorIs(err, recoverErr) }