miladalahyari commented on issue #42136:
URL: https://github.com/apache/airflow/issues/42136#issuecomment-3599254443

   thanks @andrew-stein-sp 
   for: ariflow version 3.1.3
   
   I had same problem and i fix it with 
https://github.com/apache/airflow/issues/42136#issuecomment-3572318239
   in my airflow.cfg
   ```
   [logging]
   hostname_callable = airflow.utils.net.get_host_ip_address
   ..
   [core]
   hostname_callable = airflow.utils.net.get_host_ip_address
   
   [api]
   hostname_callable = airflow.utils.net.get_host_ip_address
   
   and please don't forget secret_key 
   
   create it with
   `python3 -c "import secrets; print(secrets.token_hex(16))"`
   
   ```
   define this for all airflow services like worker, 
api,scheduler,webserver,triggerer
   
   AIRFLOW__API_AUTH__JWT_SECRET="{{ airflow_jwt_secret }}"
   
   and add it as env
   
   @dmitrimahayana 


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