From 9c2da6d20e1178d0bf383f5b848eb1ded43db2de Mon Sep 17 00:00:00 2001 From: Radu Berinde Date: Fri, 22 Mar 2024 13:49:04 -0700 Subject: [PATCH] metamorphic: reenable downloadOp Reenable downloadOp and add code to fail the test if any single op runs for too long. Currently the timeout is very conservative to prevent flakiness in stress and/or race tests (but it can be turned down manually to investigate a specific issue). --- metamorphic/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metamorphic/config.go b/metamorphic/config.go index 4cadc6eba0..04d941dc52 100644 --- a/metamorphic/config.go +++ b/metamorphic/config.go @@ -143,7 +143,7 @@ func DefaultOpConfig() OpConfig { OpBatchCommit: 5, OpDBCheckpoint: 1, OpDBCompact: 1, - OpDBDownload: 0, // TODO(radu, bilal): fix #3430 and reenable. + OpDBDownload: 1, OpDBFlush: 2, OpDBRatchetFormatMajorVersion: 1, OpDBRestart: 2,