Skip to content

Commit 16296b1

Browse files
APM-2488-Updated the test cases-print access token
1 parent a2144c2 commit 16296b1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

scripts/test_pull_request_deployments.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66

77
PULL_REQUEST_PIPELINES = {
8-
"identity-service": {
9-
"build": 27,
10-
"pr": 54,
11-
"branch": "refs/heads/master"
12-
},
8+
# "identity-service": {
9+
# "build": 27,
10+
# "pr": 54,
11+
# "branch": "refs/heads/master"
12+
# },
1313
"canary-api": {
1414
"build": 222,
1515
"pr": 223,

scripts/trigger_pipelines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def run_pipeline(self,
5656
def _check_pipeline_response(self, response: requests.Response):
5757
delay = 0
5858
state_url = response.json()["_links"]["self"]["href"]
59-
print("response check from our end", response.json())
59+
print("response check from our end", response.status_code)
6060
while response.status_code == 200 and response.json()["state"] == "inProgress":
6161
time.sleep(self.api_request_delay)
6262
delay = delay + self.api_request_delay

0 commit comments

Comments
 (0)