From b250fbd625f2b8ad1db0a56f9e9d01b9b2278643 Mon Sep 17 00:00:00 2001 From: Yutong Zhang Date: Fri, 13 Dec 2024 16:13:23 +0800 Subject: [PATCH] test --- .../impacted_area_testing/calculate_instance_number.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/.azure-pipelines/impacted_area_testing/calculate_instance_number.py b/.azure-pipelines/impacted_area_testing/calculate_instance_number.py index f2a7b2eaba..f5b7399d29 100644 --- a/.azure-pipelines/impacted_area_testing/calculate_instance_number.py +++ b/.azure-pipelines/impacted_area_testing/calculate_instance_number.py @@ -27,7 +27,6 @@ def get_access_token(): while az_login_attempts < MAX_GET_TOKEN_RETRY_TIMES: try: result = os.popen(az_login_cmd) - print(result.read()) break except Exception as exception: az_login_attempts += 1 @@ -47,7 +46,6 @@ def get_access_token(): try: result = os.popen(get_token_cmd) access_token = result.read() - print(access_token) if not access_token: raise Exception("Parse token from stdout failed, accessToken is None.")