ephraimbuddy commented on code in PR #43949:
URL: https://github.com/apache/airflow/pull/43949#discussion_r1847135752
##########
airflow/cli/cli_config.py:
##########
@@ -967,10 +967,10 @@ def string_lower_type(val):
)
# reserialize
-ARG_CLEAR_ONLY = Arg(
- ("--clear-only",),
+ARG_CLEAR_HISTORY = Arg(
+ ("--clear-history",),
action="store_true",
- help="If passed, serialized DAGs will be cleared but not reserialized.",
+ help="If passed, DAGs history will be cleared.",
Review Comment:
Dag run history is different from dag version history. Run history means
DagRun history, while dag version history is serdag changes. dag version has
FK's to DagRun & TI. Deleting dagversion will delete related DagRun and TI.
--
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]