potiuk commented on a change in pull request #20438:
URL: https://github.com/apache/airflow/pull/20438#discussion_r776341667
##########
File path: airflow/cli/cli_parser.py
##########
@@ -738,6 +738,13 @@ def _check(value):
help="Kubernetes Namespace. Default value is `[kubernetes] namespace` in
configuration.",
)
+ARG_MIN_PENDING_MINUTES = Arg(
+ ("--min-pending-minutes",),
+ default=30,
+ type=positive_int(allow_zero=False),
+ help="Pending pods created before the time interval are to be cleaned
up,measured in minutes. Default value is 30(m). The mininum value is 5(m).",
Review comment:
```suggestion
help="Pending pods created before the time interval are to be cleaned
up, "
"measured in minutes. Default value is 30(m). The minimum value
is 5(m).",
```
--
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]