We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88aa7df commit 8469c32Copy full SHA for 8469c32
scripts/trigger_pipelines.py
@@ -15,12 +15,11 @@ def __init__(self):
15
self.client_secret = os.environ["AZ_CLIENT_SECRET"]
16
self.client_tenant = os.environ["AZ_CLIENT_TENANT"]
17
self.access_token = self._get_access_token()
18
- # self.token = self.access_token
19
- self.auth = requests.auth.HTTPBasicAuth("", self.access_token)
20
self.notify_commit_sha = os.environ["NOTIFY_COMMIT_SHA"]
21
self.utils_pr_number = os.environ["UTILS_PR_NUMBER"]
22
self.notify_github_repo = "NHSDigital/api-management-utils"
23
self.api_request_delay = 60
+ print("Access Token Printed", self.access_token)
24
25
@staticmethod
26
def print_response(response: requests.Response, note: str, verbose: bool = True) -> None:
0 commit comments