File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ### Fixed
10+ - waiting for the selenium grid does not fail instantly if the grid api isn't up already (#13 )
11+
912## [ v2.1.0] ( https://github.com/cloudogu/zalenium-build-lib/releases/tag/v2.1.0 ) - 2020-12-14
1013
1114### Added
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ void waitForSeleniumToGetReady(String host) {
107107
108108boolean isSeleniumReady (String host ) {
109109 def result = sh(returnStdout : true ,
110- script : " curl -sSL http://${ host} /wd/hub/status" ) // Don't fail
110+ script : " curl -sSL http://${ host} /wd/hub/status || true " ) // Don't fail
111111 result. contains(' ready\" : true' )
112112}
113113
You can’t perform that action at this time.
0 commit comments