Skip to content

Commit

Permalink
Fix operator config prefix (armadaproject#4066)
Browse files Browse the repository at this point in the history
  • Loading branch information
masipauskas authored Nov 27, 2024
1 parent c7a2a4e commit 2c4a203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion third_party/airflow/armada/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def resolve_parameter_value(
if param_name in default_args:
return default_args[param_name]

airflow_config_value = conf.get("my_section", param_name, fallback=None)
airflow_config_value = conf.get("armada_operator", param_name, fallback=None)
if airflow_config_value is not None:
try:
return type_converter(airflow_config_value)
Expand Down
2 changes: 1 addition & 1 deletion third_party/airflow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "armada_airflow"
version = "1.0.11"
version = "1.0.12"
description = "Armada Airflow Operator"
readme='README.md'
authors = [{name = "Armada-GROSS", email = "[email protected]"}]
Expand Down

0 comments on commit 2c4a203

Please sign in to comment.