Reducing default retries to 2

Many errors cannot be recovered from by retrying. There is currently
no way to distinguish these states so it is now set to a lower value
to have not long wait times until an item arrives.
This commit is contained in:
Eike Kettner 2020-06-25 23:57:01 +02:00
parent 41286959b2
commit 91da3b149e

View File

@ -68,7 +68,7 @@ docspell.joex {
# How often a failed job should be retried until it enters failed # How often a failed job should be retried until it enters failed
# state. If a job fails, it becomes "stuck" and will be retried # state. If a job fails, it becomes "stuck" and will be retried
# after a delay. # after a delay.
retries = 5 retries = 2
# The delay until the next try is performed for a failed job. This # The delay until the next try is performed for a failed job. This
# delay is increased exponentially with the number of retries. # delay is increased exponentially with the number of retries.