Skip to content

Commit 9eb050b

Browse files
fix: add default timeouts for create and cleanup
1 parent e6e765a commit 9eb050b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/slo/internal/config/config.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ func New() (*Config, error) {
5353
}
5454

5555
cfg.Mode = CreateMode
56+
cfg.Time = 30
5657

5758
fs.Uint64Var(&cfg.MinPartitionsCount,
5859
"min-partitions-count", 6, "minimum amount of partitions in table")
@@ -72,6 +73,7 @@ func New() (*Config, error) {
7273
}
7374

7475
cfg.Mode = CleanupMode
76+
cfg.Time = 30
7577
case "run":
7678
if len(os.Args) < 4 {
7779
fmt.Print(runHelp)

0 commit comments

Comments
 (0)