talna-evogene edited a comment on issue #20442:
URL: https://github.com/apache/airflow/issues/20442#issuecomment-999557434


   hi
   I added a small DAG in my description to reproduce it, let me know what 
other information is required for you to reproduce:
   
   This is a small DAG to reproduce this error. 
   We use airflow on kubernetes with:
   Python version: 3.7.12
   Airflow version: 2.2.2
   
   ```python
   from airflow import DAG
   from airflow.models.param import Param
   from airflow.operators.dummy import DummyOperator
   from datetime import datetime
   params = {
       'wd': Param(type='number', description="demo numeric param")
   }
   default_args ={
       'depends_on_past': False,
       'start_date': datetime(2021, 6, 16)
   }
   with DAG 
('mydag',params=params,default_args=default_args,catchup=False,schedule_interval=None)
 as dag:
       t1 = DummyOperator(task_id='task1')
   ```


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