We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b634b3 commit 1f622b7Copy full SHA for 1f622b7
snmpbot.py
@@ -428,8 +428,8 @@ def jobs(self):
428
429
430
def wait_for_grafolean(backend_url):
431
+ url = '{}/status/info'.format(backend_url)
432
while True:
- url = '{}/status/info'.format(backend_url)
433
log.info("Checking Grafolean status...")
434
try:
435
r = requests.get(url)
@@ -440,7 +440,7 @@ def wait_for_grafolean(backend_url):
440
return
441
except:
442
pass
443
- log.info("Grafolean backend not available / initialized yet, waiting.")
+ log.info(f"Grafolean backend (url: {url}) not available / initialized yet, waiting.")
444
time.sleep(10)
445
446
0 commit comments