Skip to content

Commit

Permalink
test-applaince: increase LTM and KCS timeouts
Browse files Browse the repository at this point in the history
If the LTM or KCS servers are busy, it might take longer for them to
respond; increase the timeouts to prevent unnecessary failures.

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
  • Loading branch information
tytso committed Jun 12, 2024
1 parent fb5e7b6 commit fe8b9da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ func (r ResultType) String() string {
}

const (
kcsTimeout = 30 * time.Second
ltmTimeout = 60 * time.Second
kcsTimeout = 3 * time.Minute
ltmTimeout = 3 * time.Minute
checkInterval = 10 * time.Second
launchInterval = 2 * time.Minute
maxAttempts = 5
Expand Down

0 comments on commit fe8b9da

Please sign in to comment.