amoghrajesh commented on PR #65212: URL: https://github.com/apache/airflow/pull/65212#issuecomment-4250078139
@eladkal I wasn't aware of that one so I investigated a bit. They are actually distinct issues. #63610 was trying to fix a race condition, ie: concurrent tasks fighting over the aws cli cache dir, causing `FileExistsError`. A new version of botocore helped solve it because botocore ≥ 1.40.2 seemed to handle it internally. This PR is different and is a token expiry issue specific to `AsyncKubernetesHook`. On the first `_load_config()` call, the exec plugin runs and obtains a token which is short lived. Because `_config_loaded = True` is set, all future calls return early and do not renew the token resulting to failed auth. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
