File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
- ## [ v2.1.0] ( https://github.com/cloudogu/zalenium-build-lib/releases/tag/v2.1.0 ) - 2020-12-14
9
+ ## [ v2.1.1] ( https://github.com/cloudogu/zalenium-build-lib/releases/tag/v2.1.1 ) - 2021-03-17
10
+ ### Fixed
11
+ - waiting for the selenium grid does not fail instantly if the grid api isn't up already (#13 )
10
12
13
+ ## [ v2.1.0] ( https://github.com/cloudogu/zalenium-build-lib/releases/tag/v2.1.0 ) - 2020-12-14
11
14
### Added
12
-
13
15
- config parameter for controlling the video recording during test execution (#11 )
14
16
15
17
## [ v2.0.0] ( https://github.com/cloudogu/zalenium-build-lib/releases/tag/v2.0.0 ) - 2020-02-21
@@ -42,7 +44,6 @@ The release v1.2.0 introduced a defect in which the default Nexus mirror reposit
42
44
This release contains breaking changes and should not be used. Instead use the release v2.0.0
43
45
44
46
## [ v1.1.0] ( https://github.com/cloudogu/zalenium-build-lib/releases/tag/v1.1.0 ) - 2019-09-18
45
-
46
47
### Added
47
48
48
49
In this release several Maven settings and truststore helpers are added. These are addressable with following jenkins pipeline variables for which (if the library is added) help texts appear in Jenkins' pipeline steps help (#4 , #6 ):
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ void waitForSeleniumToGetReady(String host) {
107
107
108
108
boolean isSeleniumReady (String host ) {
109
109
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
111
111
result. contains(' ready\" : true' )
112
112
}
113
113
You can’t perform that action at this time.
0 commit comments