justinpakzad commented on code in PR #59874:
URL: https://github.com/apache/airflow/pull/59874#discussion_r2991491900
##########
airflow-core/src/airflow/jobs/triggerer_job_runner.py:
##########
@@ -473,6 +475,8 @@ def _handle_request(self, msg: ToTriggerSupervisor, log:
FilteringBoundLogger, r
self.client.variables.set(msg.key, msg.value, msg.description)
elif isinstance(msg, DeleteXCom):
self.client.xcoms.delete(msg.dag_id, msg.run_id, msg.task_id,
msg.key, msg.map_index)
+ elif isinstance(msg, BulkDeleteXCom):
+ self.client.xcoms.delete_all(msg.dag_id, msg.run_id, msg.task_id,
msg.key, msg.map_index)
elif isinstance(msg, GetXCom):
Review Comment:
I didn't see the existing DeleteXCom supported in the processor so I didn't
include it. Happy to add it in if it makes sense to.
--
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]