Skip to content

Commit 625dd22

Browse files
authored
Merge pull request #1049 from atlassian/release/7.4.1
Release/7.4.1
2 parents 99e302e + 51e746f commit 625dd22

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

app/bamboo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ modules:
123123
httpsampler.ignore_failed_embedded_resources: "true"
124124
selenium:
125125
chromedriver:
126-
version: "113.0.5672.63" # Supports Chrome version 113. You can refer to http://chromedriver.chromium.org/downloads
126+
version: "114.0.5735.90" # Supports Chrome version 114. You can refer to http://chromedriver.chromium.org/downloads
127127
reporting:
128128
- data-source: sample-labels
129129
module: junit-xml

app/bitbucket.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ modules:
9090
httpsampler.ignore_failed_embedded_resources: "true"
9191
selenium:
9292
chromedriver:
93-
version: "113.0.5672.63" # Supports Chrome version 113. You can refer to http://chromedriver.chromium.org/downloads
93+
version: "114.0.5735.90" # Supports Chrome version 114. You can refer to http://chromedriver.chromium.org/downloads
9494
reporting:
9595
- data-source: sample-labels
9696
module: junit-xml

app/confluence.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ modules:
117117
httpsampler.ignore_failed_embedded_resources: "true"
118118
selenium:
119119
chromedriver:
120-
version: "113.0.5672.63" # Supports Chrome version 113. You can refer to http://chromedriver.chromium.org/downloads
120+
version: "114.0.5735.90" # Supports Chrome version 114. You can refer to http://chromedriver.chromium.org/downloads
121121
reporting:
122122
- data-source: sample-labels
123123
module: junit-xml

app/jira.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ modules:
118118
httpsampler.ignore_failed_embedded_resources: "true"
119119
selenium:
120120
chromedriver:
121-
version: "113.0.5672.63" # Supports Chrome version 113. You can refer to http://chromedriver.chromium.org/downloads
121+
version: "114.0.5735.90" # Supports Chrome version 114. You can refer to http://chromedriver.chromium.org/downloads
122122
reporting:
123123
- data-source: sample-labels
124124
module: junit-xml

app/jsm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ modules:
170170
httpsampler.ignore_failed_embedded_resources: "true"
171171
selenium:
172172
chromedriver:
173-
version: "113.0.5672.63" # Supports Chrome version 113. You can refer to http://chromedriver.chromium.org/downloads
173+
version: "114.0.5735.90" # Supports Chrome version 114. You can refer to http://chromedriver.chromium.org/downloads
174174
reporting:
175175
- data-source: sample-labels
176176
module: junit-xml

app/util/api/confluence_clients.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,14 @@ def get_deployment_type(self):
195195
return 'other'
196196

197197
def get_node_ip(self, node_id: str) -> str:
198-
return self.get(
199-
url=f"{self.host}/rest/zdu/nodes/{node_id}",
200-
expected_status_codes=[200],
201-
error_msg=f"Cannot get {node_id} node IP",
202-
).json().get("ipAddress")
198+
if node_id != "SERVER":
199+
return self.get(
200+
url=f"{self.host}/rest/zdu/nodes/{node_id}",
201+
expected_status_codes=[200],
202+
error_msg=f"Cannot get {node_id} node IP",
203+
).json().get("ipAddress")
204+
else:
205+
return ""
203206

204207

205208
class ConfluenceRpcClient(Client):

app/util/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from util.project_paths import JIRA_YML, CONFLUENCE_YML, BITBUCKET_YML, JSM_YML, CROWD_YML, BAMBOO_YML
44

5-
TOOLKIT_VERSION = '7.4.0'
5+
TOOLKIT_VERSION = '7.4.1'
66
UNSUPPORTED_VERSION = '6.3.0'
77

88

0 commit comments

Comments
 (0)