Vasily V
Vasily V
I am getting the same error, and it looks like it's some kind of disconnect during getJwtToken part of the authorization flow. It goes to https://sso.ci.ford.com/v1.0/endpoint/default/authorize -> 302 to https://sso.ci.ford.com/idaas/mtfim/sps/idaas/login...
This is an unintended side effect of a fix for https://github.com/hashicorp/terraform-provider-aws/issues/10385, in particular this: https://github.com/hashicorp/terraform-provider-aws/pull/14075/files#diff-5e4a6b8e4a6c77b74e7be4e7a71e699f47038f363136db01e4b493ab10c705e1R240-R247 All non-alpha characters are removed from the key names, so if you have, for example,...
you can use a custom `wait` callback: ``` def my_wait(retry_state: RetryCallState): ex = retry_state.outcome.exception() if isinstance(ex, requests.exceptions.HTTPError) and ex.response.status_code == 429: retry_after = ex.response.headers.get("Retry-After") try: return int(retry_after) except (TypeError, ValueError):...
> I wouldn't make this change without a clear understanding of why a re-entrant lock would be required here. We are seeing this issue sporadically as well. Specifically, it seems...