ephraimbuddy commented on a change in pull request #16872:
URL: https://github.com/apache/airflow/pull/16872#discussion_r665899179



##########
File path: airflow/providers/neo4j/example_dags/example_neo4j.py
##########
@@ -23,13 +23,8 @@
 from airflow.providers.neo4j.operators.neo4j import Neo4jOperator
 from airflow.utils.dates import days_ago
 
-default_args = {
-    'owner': 'airflow',
-}
-
 dag = DAG(
     'example_neo4j',
-    default_args=default_args,

Review comment:
       I feel that we shouldn't remove the `owner` argument from the examples. 
We can however add it to the DAG argument. Like:
   ```
   dag  = DAG(...,
            default_args={'owner':'airflow'},
            ...
   )
   ```
   This lets people know that such arg is possible




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