sokojh commented on issue #61737:
URL: https://github.com/apache/airflow/issues/61737#issuecomment-5613846256

   Looks fixed by #65212 (merged 2026-04-16). `_load_config` now detects 
exec-based
   auth and skips the `_config_loaded` cache for it, so the exec plugin runs 
again on
   each `get_conn`:
   
   ```python
   if self._is_exec_auth is None:
       self._is_exec_auth = self._uses_exec_auth(kubeconfig_data, 
context=cluster_context)
   if not self._is_exec_auth:
       self._config_loaded = True
   ```
   
   Worth a confirmation against a real EKS cluster before closing, since I only
   checked the code path.


-- 
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]

Reply via email to