Skip to content

Commit

Permalink
Merge pull request #333 from cunnie/nsx-t_no_route_to_host
Browse files Browse the repository at this point in the history
Allow security groups to pass on NSX-T [Finishes #160271447]
  • Loading branch information
staylor14 authored Sep 7, 2018
2 parents 066cc8c + c91f3a5 commit 0bc1c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ exit 1`
appLogs := logs.Tail(Config.GetUseLogCache(), appName).Wait()
Expect(appLogs).To(Exit(0))
return string(appLogs.Out.Contents())
}, Config.CfPushTimeoutDuration()).Should(ContainSubstring("Connection timed out"), "ASG configured to allow connection to the private IP but the app is still refused by private ip")
}, Config.CfPushTimeoutDuration()).Should(MatchRegexp("Connection timed out|No route to host"), "ASG configured to allow connection to the private IP but the app is still refused by private ip")

close(done)
}, 30*60 /* <-- overall spec timeout in seconds */)
Expand Down

0 comments on commit 0bc1c5f

Please sign in to comment.