retry...
This commit is contained in:
parent
12621fa36b
commit
6c300f24f0
1 changed files with 15 additions and 1 deletions
|
@ -1,8 +1,10 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from requests import Session
|
from requests import Session
|
||||||
|
from requests.exceptions import ConnectionError
|
||||||
from sys import argv
|
from sys import argv
|
||||||
from time import time
|
from time import sleep, time
|
||||||
|
|
||||||
|
|
||||||
if len(argv) > 1 and argv[1] == "remove":
|
if len(argv) > 1 and argv[1] == "remove":
|
||||||
action = "remove"
|
action = "remove"
|
||||||
|
@ -17,6 +19,18 @@ session = Session()
|
||||||
session.auth = ('root', '${icinga_password}')
|
session.auth = ('root', '${icinga_password}')
|
||||||
now = int(time())
|
now = int(time())
|
||||||
|
|
||||||
|
|
||||||
|
# wait online
|
||||||
|
|
||||||
|
for _ in range(10):
|
||||||
|
try:
|
||||||
|
session.get(api_url).raise_for_status()
|
||||||
|
except ConnectionError as error:
|
||||||
|
print(f'{error}: retrying...')
|
||||||
|
sleep(3)
|
||||||
|
else:
|
||||||
|
break
|
||||||
|
|
||||||
# look for existing downtimes
|
# look for existing downtimes
|
||||||
|
|
||||||
response = session.get(
|
response = session.get(
|
||||||
|
|
Loading…
Reference in a new issue