arnoldmr01 commented on code in PR #62259:
URL: https://github.com/apache/airflow/pull/62259#discussion_r3080693275
##########
providers/standard/src/airflow/providers/standard/operators/trigger_dagrun.py:
##########
@@ -162,6 +163,11 @@ class TriggerDagRunOperator(BaseOperator):
"wait_for_completion",
"skip_when_already_exists",
)
+
+ attributes_not_suppported_in_airflow_2: Sequence[str] = (
+ "run_after",
+ "note",
+ )
Review Comment:
Modified attributes_not_supported_in_airflow_2 to
```
attributes_not_supported_in_airflow_2 = { "run_after": NOTSET, "note": None,
}
```
and Modified the typo
--
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]