connorwang commented on issue #57470:
URL: https://github.com/apache/airflow/issues/57470#issuecomment-3728425970
@Komalpawar22 I have a temporary solution that works for our helm deployment
values.yaml
```
config:
fab:
enable_proxy_fix: 'True'
session_lifetime_minutes: "1440"
webserver:
args:
- bash
- "-c"
# Install latest FAB provider to fix PendingRollbackError (issue
#57470)
- |
pip install --no-cache-dir "apache-airflow-providers-fab>=3.1.0"
\
&& exec airflow webserver
env:
- name: AIRFLOW__DATABASE__SQL_ALCHEMY_POOL_PRE_PING
value: "True"
- name: AIRFLOW__DATABASE__SQL_ALCHEMY_POOL_RECYCLE
value: "1800"
apiServer:
args:
- bash
- "-c"
# Install latest FAB provider to fix PendingRollbackError (issue
#57470)
- |
pip install --no-cache-dir "apache-airflow-providers-fab>=3.1.0"
\
&& exec airflow webserver
env:
- name: AIRFLOW__DATABASE__SQL_ALCHEMY_POOL_PRE_PING
value: "True"
- name: AIRFLOW__DATABASE__SQL_ALCHEMY_POOL_RECYCLE
value: "1800"
```
--
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]