Skip to content

Commit

Permalink
go/oasis-test-runner: Fix flaky history-reindex test
Browse files Browse the repository at this point in the history
  • Loading branch information
peternose committed Dec 7, 2024
1 parent 2e1f2f0 commit 9e3cb33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9e3cb33

Please sign in to comment.