MM: don't use host timeout

Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
Aurélien Bompard 2024-03-14 08:58:51 +01:00
parent d320f9821e
commit d11d6a27d9
No known key found for this signature in database
GPG key ID: 31584CFEB9BF64AD
2 changed files with 5 additions and 3 deletions

View file

@ -28,8 +28,10 @@ spec:
- "{{ cronjob.threads }}"
- "--global-timeout"
- "{{ cronjob.timeout }}"
{% if cronjob.host_timeout %}
- "--host-timeout"
- "{{ cronjob.host_timeout | default('190') }}"
- "{{ cronjob.host_timeout }}"
{% endif %}
- "--category"
- "{{ cronjob.category }}"
- "--{{ cronjob.include_disabled | ternary('include', 'exclude') }}-disabled"

View file

@ -40,8 +40,8 @@ mirrormanager_cron_crawler:
schedule: "0 2 * * *"
threads: 20
timeout: 720
# This can be a veeery long crawl per host
host_timeout: 600
## This can be a veeery long crawl per host
#host_timeout: 600
include_disabled: false
# Other content
- category: "Fedora Other"