Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions images/airflow/2.10.1/python/mwaa/config/airflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def _get_opinionated_airflow_core_config() -> Dict[str, str]:

return {
"AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER": "True",
"AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES": "proxy,proxies",
}


Expand Down
1 change: 1 addition & 0 deletions images/airflow/2.10.3/python/mwaa/config/airflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def _get_opinionated_airflow_core_config() -> Dict[str, str]:

return {
"AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER": "True",
"AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES": "proxy,proxies",
}


Expand Down
1 change: 1 addition & 0 deletions images/airflow/2.11.0/python/mwaa/config/airflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def _get_opinionated_airflow_core_config() -> Dict[str, str]:

return {
"AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER": "True",
"AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES": "proxy,proxies",
}


Expand Down
1 change: 1 addition & 0 deletions images/airflow/2.9.2/python/mwaa/config/airflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def _get_opinionated_airflow_core_config() -> Dict[str, str]:

return {
"AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER": "True",
"AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES": "proxy,proxies",
}


Expand Down
1 change: 1 addition & 0 deletions images/airflow/3.0.6/python/mwaa/config/airflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def _get_opinionated_airflow_core_config() -> Dict[str, str]:

return {
"AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER": "True",
"AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES": "proxy,proxies",
}


Expand Down
1 change: 1 addition & 0 deletions images/airflow/3.1.6/python/mwaa/config/airflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def _get_opinionated_airflow_core_config() -> Dict[str, str]:

return {
"AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER": "True",
"AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES": "proxy,proxies",
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def test_get_opinionated_airflow_core_config():
result = _get_opinionated_airflow_core_config()

assert result["AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER"] == "True"
assert result["AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES"] == "proxy,proxies"

# ---------------------------------
# User Airflow Config Tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def test_get_opinionated_airflow_core_config():
result = _get_opinionated_airflow_core_config()

assert result["AIRFLOW__CORE__EXECUTE_TASKS_NEW_PYTHON_INTERPRETER"] == "True"
assert result["AIRFLOW__CORE__SENSITIVE_VAR_CONN_NAMES"] == "proxy,proxies"

# ---------------------------------
# User Airflow Config Tests
Expand Down
Loading