Skip to content

Commit

Permalink
refactor: increase prune interval in testing
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Dec 19, 2024
1 parent ccea311 commit c565158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/testutil/testutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func NewHostNode(t testing.TB, pk types.PrivateKey, network *consensus.Network,
}
t.Cleanup(func() { wm.Close() })

vm, err := storage.NewVolumeManager(cn.Store, storage.WithLogger(log.Named("storage")), storage.WithPruneInterval(time.Second))
vm, err := storage.NewVolumeManager(cn.Store, storage.WithLogger(log.Named("storage")), storage.WithPruneInterval(30*time.Second))
if err != nil {
t.Fatal("failed to create volume manager:", err)
}
Expand Down

0 comments on commit c565158

Please sign in to comment.