alex-astronomer commented on issue #18592:
URL: https://github.com/apache/airflow/issues/18592#issuecomment-929679943
Ah those changes look like template strings nested within a list of
`V1EnvVar`s. The change here would be to allow
```
some_task = KubernetesPodOperator(
...,
env_vars="{{ ti.xcom_pull(key="return_value",
task_ids="some_python_task") }}"
...,
)
```
Where the return value of `some_python_task` is a dictionary which gets
converted to that `List[V1EnvVar]` in the constructor.
I'll install the latest version right now and let you know what happpens.
--
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]