From 9e3cb333c158c4279818adcb573aceb81ca3a809 Mon Sep 17 00:00:00 2001 From: Peter Nose Date: Sat, 7 Dec 2024 02:42:37 +0100 Subject: [PATCH] go/oasis-test-runner: Fix flaky history-reindex test --- go/oasis-test-runner/scenario/e2e/runtime/history_reindex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/oasis-test-runner/scenario/e2e/runtime/history_reindex.go b/go/oasis-test-runner/scenario/e2e/runtime/history_reindex.go index 817b28da7d9..298e06087e4 100644 --- a/go/oasis-test-runner/scenario/e2e/runtime/history_reindex.go +++ b/go/oasis-test-runner/scenario/e2e/runtime/history_reindex.go @@ -115,7 +115,7 @@ func (sc *historyReindexImpl) Run(ctx context.Context, childEnv *env.Env) error // Restart compute worker with configured runtime. compute := sc.Net.ComputeWorkers()[0] sc.Logger.Info("stopping the compute worker") - if err := compute.Stop(); err != nil { + if err := compute.StopGracefully(); err != nil { return err } var rtIdx int