ephraimbuddy commented on issue #29199:
URL: https://github.com/apache/airflow/issues/29199#issuecomment-1438935777

   This fixes it:
   ```diff
   diff --git a/airflow/models/xcom_arg.py b/airflow/models/xcom_arg.py
   index 133fd4280b..1c7290f794 100644
   --- a/airflow/models/xcom_arg.py
   +++ b/airflow/models/xcom_arg.py
   @@ -340,6 +340,8 @@ class PlainXComArg(XComArg):
                return result
            if self.key == XCOM_RETURN_KEY:
                return None
   +        if isinstance(result, ArgNotSet):
   +            return None
            raise XComNotFound(ti.dag_id, task_id, self.key)
   ```
   But I'm wondering what the implications are. WDYT @uranusjr 


-- 
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

Reply via email to