Skip to content
Merged
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
2 changes: 1 addition & 1 deletion airflow/models/xcom.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def get_one(
) -> Any | None:
""":sphinx-autoapi-skip:"""
if not exactly_one(execution_date is not None, run_id is not None):
raise ValueError("Exactly one of ti_key, run_id, or execution_date must be passed")
raise ValueError("Exactly one of run_id or execution_date must be passed")

if run_id:
query = BaseXCom.get_many(
Expand Down