mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2024-12-23 10:20:13 +00:00
catch timeout in es connection check
This commit is contained in:
parent
06f3055913
commit
befdc64772
@ -81,7 +81,10 @@ class Command(BaseCommand):
|
|||||||
_, status_code = ElasticWrap("/").get(
|
_, status_code = ElasticWrap("/").get(
|
||||||
timeout=1, print_error=False
|
timeout=1, print_error=False
|
||||||
)
|
)
|
||||||
except requests.exceptions.ConnectionError:
|
except (
|
||||||
|
requests.exceptions.ConnectionError,
|
||||||
|
requests.exceptions.Timeout,
|
||||||
|
):
|
||||||
sleep(5)
|
sleep(5)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user