jmelot commented on a change in pull request #15959:
URL: https://github.com/apache/airflow/pull/15959#discussion_r672265091
##########
File path: airflow/providers/asana/example_dags/example_asana.py
##########
@@ -31,46 +33,62 @@
"owner": "airflow",
}
+ASANA_TASK_TO_UPDATE = os.environ.get("ASANA_TASK_TO_UPDATE")
+ASANA_TASK_TO_DELETE = os.environ.get("ASANA_TASK_TO_DELETE")
+ASANA_PROJECT_ID = os.environ.get("ASANA_PROJECT_ID")
+CONN_ID = os.environ.get("ASANA_CONNECTION_ID")
Review comment:
Actually, this leads to an import error when
`ci_prepare_provider_documentation.sh` gets run -- switching back to
os.environ.get for now, though will check around later and see if there's
another way to resolve.
--
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]