Tak.
Parametry limitu czasu
curl
ma dwie opcje: --connect-timeout
i --max-time
.
Cytowanie ze strony man:
--connect-timeout <seconds>
Maximum time in seconds that you allow the connection to the
server to take. This only limits the connection phase, once
curl has connected this option is of no more use. Since 7.32.0,
this option accepts decimal values, but the actual timeout will
decrease in accuracy as the specified timeout increases in deci‐
mal precision. See also the -m, --max-time option.
If this option is used several times, the last one will be used.
i:
-m, --max-time <seconds>
Maximum time in seconds that you allow the whole operation to
take. This is useful for preventing your batch jobs from hang‐
ing for hours due to slow networks or links going down. Since
7.32.0, this option accepts decimal values, but the actual time‐
out will decrease in accuracy as the specified timeout increases
in decimal precision. See also the --connect-timeout option.
If this option is used several times, the last one will be used.
Domyślne
Tutaj (na Debianie) przestaje próbować połączyć się po 2 minutach, niezależnie od czasu określonego za pomocą --connect-timeout
i chociaż domyślna wartość limitu czasu połączenia wydaje się wynosić 5 minut, zgodnie z DEFAULT_CONNECT_TIMEOUT
makrem w lib / connect.h .
--max-time
Wydaje się, że domyślna wartość nie istnieje, co oznacza, że curl
oczekiwanie na odpowiedź będzie trwało wiecznie.
Czego używać?
Prawdopodobnie jesteś zainteresowany w tym drugim wariancie --max-time
. W twoim przypadku ustaw na 900
(15 minut).
Dobrym pomysłem może być również określenie opcji --connect-timeout
czegoś takiego jak 60
(jedna minuta). W przeciwnym razie curl
spróbuje połączyć się ponownie, najwyraźniej używając jakiegoś algorytmu wycofywania.