eumiro commented on code in PR #34350:
URL: https://github.com/apache/airflow/pull/34350#discussion_r1326324706


##########
airflow/api/common/trigger_dag.py:
##########
@@ -54,7 +54,8 @@ def _trigger_dag(
     if dag is None or dag_id not in dag_bag.dags:
         raise DagNotFound(f"Dag id {dag_id} not found")
 
-    execution_date = execution_date if execution_date else timezone.utcnow()
+    if execution_date is None:
+        execution_date = timezone.utcnow()

Review Comment:
   Yes. However, while other cases are `c = a or b` and we need to attribute 
something to `c`, this is `a = a or b`, so if `a` is trueish, it is not 
modified.



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