# HG changeset patch # User Thomas Junk # Date 1626767116 -7200 # Node ID 1faca2dd45d2f900079b4de237743dfbe5e67948 # Parent 5000f8e8a4f1ae437385efd6f369dbf185826cf0 limit number of retries to 200 and set minumum wait to 5s. diff -r 5000f8e8a4f1 -r 1faca2dd45d2 client/src/components/importconfiguration/ScheduledImports.vue --- a/client/src/components/importconfiguration/ScheduledImports.vue Mon Jul 19 17:59:37 2021 +0200 +++ b/client/src/components/importconfiguration/ScheduledImports.vue Tue Jul 20 09:45:16 2021 +0200 @@ -411,6 +411,8 @@ class="mr-1 form-control form-control-sm" v-tooltip.bottom="ttRetries" type="number" + max="200" + min="0" /> @@ -422,6 +424,8 @@
  • ${this.$gettext("60 for 60 Seconds ")}
  • ${this.$gettext("30m for 30 Minutes")}
  • ${this.$gettext( "2h45m for for two hours and 45 Minutes" - )}
  • `; + )}
  • ${this.$gettext("At least 5 Seconds ")} +
  • `; }, ttRetries() { return ` ${this.$gettext("Maximum retry count")}
    ${this.$gettext( "If there is no error during import, there will be no retry" )} -
  • ${this.$gettext( - "Negative values mean endless retry" - )} -
  • ${this.$gettext("0 means no retry")}
  • ${this.$gettext( +
    +
  • ${this.$gettext("0 means no retry")}
  • ${this.$gettext( "Positive values are the upper limit for retries" )} -
  • `; +
  • ${this.$gettext("Maximum of 200")} +
  • `; }, ttRetry() { return this.$gettext("retryDescription");