From e0aa3413a2479e0faf84bed1e514f88d7f930060 Mon Sep 17 00:00:00 2001 From: ffranr Date: Tue, 19 Nov 2024 15:56:05 +0000 Subject: [PATCH] itest: configure timeout for tapd harness universe courier service Set the request timeout for the tapd harness universe courier service to an appropriate value to ensure tests pass consistently. --- itest/tapd_harness.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/itest/tapd_harness.go b/itest/tapd_harness.go index 08c0e9353..ba1f2b271 100644 --- a/itest/tapd_harness.go +++ b/itest/tapd_harness.go @@ -257,7 +257,8 @@ func newTapdHarness(t *testing.T, ht *harnessTest, cfg tapdConfig, BackoffCfg: &hashmailBackoffCfg, } finalCfg.UniverseRpcCourier = &proof.UniverseRpcCourierCfg{ - BackoffCfg: &universeRpcBackoffCfg, + BackoffCfg: &universeRpcBackoffCfg, + ServiceRequestTimeout: 2 * time.Second, } switch typedProofCourier := (opts.proofCourier).(type) {