jgr-trackunit commented on issue #58693:
URL: https://github.com/apache/airflow/issues/58693#issuecomment-3645347809

   I have exactly the same issue, example task:
   ```
       task = DatabricksSubmitRunOperator(
           task_id="task",
           databricks_conn_id="databricks",
           new_cluster=get_pool_cluster(max_workers=1),
           notebook_task={"notebook_path": "non existing notebook"},
           timeout_seconds=3600,  # 4 hours
           polling_period_seconds=60,
           retries=0,
           retry_delay=0,
           git_source={
               "git_url": GIT_URL,
               "git_branch": "dev",
               "git_provider": "gitHub",
           },
       )
   ```
   
   The `airflow.cfg` sample
   ```
     config:
       core:
         dags_folder: '{{ include "airflow_dags" . }}'
         # This is ignored when used with the official Docker image
         load_examples: 'False'
         executor: '{{ .Values.executor }}'
         default_task_retries: 2
   ```
   
   CLI says:
   ```
   $ airflow config get-value core  DEFAULT_TASK_RETRIES
   2
   ```
   


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