Disallow using an empty key in XCom pull #46925
Labels
affected_version:3.0.0alpha
For all 3.0.0 alpha releases
area:core
good first issue
kind:meta
High-level information important to the community
Body
Currently we allow this
pulled_value_1 = ti.xcom_pull(key="", task_ids="push")
. We should not allow sending empty keysEventually leads to:
Here we see that a non empty value for "key" disables the filter (no
where(XCom.key == key
), it does not filter for None.This is how it looks:
It really doesn't make any sense to have an xcom with "" as key.
Committer
The text was updated successfully, but these errors were encountered: