This commit is contained in:
Jonas Zeunert
2022-06-07 00:00:03 +02:00
parent 4523c515f3
commit ee95711027

View File

@@ -24,7 +24,8 @@ class Networking:
try:
response = self.output_session.get(self.server_address + path)
except Exception as e:
logging.error("Network exception. Could not get " + path + " " + e)
logging.error("Network exception. Could not get " + path)
logging.error(e)
self.retries += 1
sleep(config.NETWORK_SLEEP_TIME_SECONDS)
return self.get(path)