Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
itpey committed May 2, 2024
1 parent 57b41ea commit a3c151e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,10 @@ func (b *jet) test(ts ...test) results {
}
}(t)
}
timeout := 30 * time.Second

timeout := time.Duration(b.client.Timeout.Seconds()+10) * time.Second
results := results{Total: len(ts)}

for i := 0; i < len(ts); i++ {
t := time.NewTimer(timeout)
select {
Expand Down

0 comments on commit a3c151e

Please sign in to comment.