-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TSPS-405 Add quota units to quota info response #45
Conversation
@@ -173,7 +173,7 @@ def _exchange_code_for_response( | |||
if "error" in json_response: | |||
# see https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow#error-response-1 | |||
LOGGER.debug( | |||
f"Error in authentication flow exchanging code for response: {json_response["error"]}; error description: {json_response["error_description"]}" | |||
f'Error in authentication flow exchanging code for response: {json_response["error"]}; error description: {json_response["error_description"]}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated to this PR, but this will fix the issue George saw previously
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we know what was causing this to be an "error" ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does seem to be a python version thing. this error comes up using python 3.10 but not using python 3.12.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, the single quote is annoying
@@ -173,7 +173,7 @@ def _exchange_code_for_response( | |||
if "error" in json_response: | |||
# see https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow#error-response-1 | |||
LOGGER.debug( | |||
f"Error in authentication flow exchanging code for response: {json_response["error"]}; error description: {json_response["error_description"]}" | |||
f'Error in authentication flow exchanging code for response: {json_response["error"]}; error description: {json_response["error_description"]}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we know what was causing this to be an "error" ?
|
Description
We've added quota units to be displayed to the user when they request their quota info:
Note tests will fail here until the service PR is merged and this PR has been updated with the new client version.
Jira Ticket
https://broadworkbench.atlassian.net/browse/TSPS-405
Checklist (provide links to changes)
terralab logout
and thenterralab pipelines list
)