Skip to content

Commit

Permalink
[Issue 1173] In "SendAndReceive", wait 100ms
Browse files Browse the repository at this point in the history
* shorten wait from 2s to 100ms and see if that stabilizes the test
  • Loading branch information
jochenehret committed Jul 16, 2024
1 parent 22ead11 commit 09c341d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cats_suite_helpers/cats_suite_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ func SendAndReceive(addr string, externalPort string) (string, error) {
}

// see https://github.com/cloudfoundry/cf-acceptance-tests/issues/1173
time.Sleep(2 * time.Second)
time.Sleep(100 * time.Millisecond)

buff := make([]byte, 1024)
_, err = conn.Read(buff)
Expand Down

0 comments on commit 09c341d

Please sign in to comment.