changed severity of cc failures
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2020-05-13 17:20:58 +02:00
parent 06279d1346
commit 879b241060
2 changed files with 6 additions and 6 deletions

View File

@@ -39,7 +39,7 @@ class ConsumerCommunicator:
response = self._session.post(f"http://{ip}/sync", json={'uuid': os.environ['LOCAL_UUID']}, timeout=5)
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout) as e:
logging.error(f"Error while syncing to {ip}: {str(e)}")
logging.warning(f"Error while syncing to {ip}: {str(e)}")
return
if response.status_code == 200:
@@ -53,7 +53,7 @@ class ConsumerCommunicator:
response = self._session.post(f"http://{ip}/sync", json={'uuid': os.environ['LOCAL_UUID']}, timeout=5)
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout) as e:
logging.error(f"Error while syncing to {ip}: {str(e)}")
logging.warning(f"Error while syncing to {ip}: {str(e)}")
continue
if response.status_code == 200: