josh-fell commented on a change in pull request #16872:
URL: https://github.com/apache/airflow/pull/16872#discussion_r666619575



##########
File path: airflow/providers/singularity/example_dags/example_singularity.py
##########
@@ -23,19 +23,17 @@
 from airflow.providers.singularity.operators.singularity import 
SingularityOperator
 from airflow.utils.dates import days_ago
 
-default_args = {
-    'owner': 'airflow',
-    'depends_on_past': False,
-    'email': ['[email protected]'],
-    'email_on_failure': False,
-    'email_on_retry': False,
-    'retries': 1,
-    'retry_delay': timedelta(minutes=5),
-}
-
 with DAG(
     'singularity_sample',
-    default_args=default_args,
+    default_args={
+        'owner': 'airflow',
+        'depends_on_past': False,
+        'email': ['[email protected]'],
+        'email_on_failure': False,
+        'email_on_retry': False,

Review comment:
       Removed other default_arg args




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