ashb commented on code in PR #46319: URL: https://github.com/apache/airflow/pull/46319#discussion_r1937414799
########## airflow/api_fastapi/execution_api/routes/xcoms.py: ########## @@ -184,13 +218,16 @@ def set_xcom( return {"message": "XCom successfully set"} -def has_xcom_access(xcom_key: str, token: TIToken) -> bool: +def has_xcom_access( + dag_id: str, run_id: str, task_id: str, xcom_key: str, token: TIToken, write: bool = False Review Comment: Nothing using it yet, but I did add the idea of read vs write access here. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org