Re: [I] Add option to enable native TLS during venv setup [airflow]

2025-12-02 Thread via GitHub


amordoch commented on issue #58966:
URL: https://github.com/apache/airflow/issues/58966#issuecomment-3603740601

   This can be resolved by setting the `UV_NATIVE_TLS` env var to `true` in the 
Helm chart (or whatever install). Closing and updating my original description.


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



Re: [I] Add option to enable native TLS during venv setup [airflow]

2025-12-02 Thread via GitHub


amordoch closed issue #58966: Add option to enable native TLS during venv setup
URL: https://github.com/apache/airflow/issues/58966


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



Re: [I] Add option to enable native TLS during venv setup [airflow]

2025-12-02 Thread via GitHub


amordoch commented on issue #58966:
URL: https://github.com/apache/airflow/issues/58966#issuecomment-3603365482

   Actually, because `--seed` is used, you don't have to have 
`system_site_packaged=True`. Relevant snippet from 
`airflow.providers.standard.python_virtualenv._generate_uv_cmd`:
   
   ```python
   cmd = ["uv", "venv", "--allow-existing", "--seed", "--python", 
python_bin]
   if system_site_packages:
   cmd.append("--system-site-packages")
   cmd.append(tmp_dir)
   return cmd
   ```


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