Skip to content

Commit

Permalink
Merge pull request #1174 from cloudfoundry/issue_1173
Browse files Browse the repository at this point in the history
[Issue 1173] In "SendAndReceive", wait 100ms before reading
  • Loading branch information
jochenehret authored Jul 17, 2024
2 parents e84b885 + 09c341d commit f13ba8f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cats_suite_helpers/cats_suite_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,9 @@ func SendAndReceive(addr string, externalPort string) (string, error) {
return "", err
}

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

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

0 comments on commit f13ba8f

Please sign in to comment.