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

   I was not able to reproduce with your test case. You also have an issue on 
the test case:
   ```python
   last_task = PythonOperator(
           task_id="last_task",
           python_callable=nop,
       )
   ```
   should have `op_args` argument since `nop` takes an argument. so:
   It should be this:
   ```python
   last_task = PythonOperator(
           task_id="last_task",
           python_callable=nop,
           op_args = [1]
       ) 
   ```
   for example


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

Reply via email to