Fixed cc not using session
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
2a52501ff3
commit
06279d1346
@ -50,7 +50,7 @@ class ConsumerCommunicator:
|
|||||||
ip = info['ip']
|
ip = info['ip']
|
||||||
try:
|
try:
|
||||||
# request synchronization
|
# request synchronization
|
||||||
response = requests.post(f"http://{ip}/sync", json={'uuid': os.environ['LOCAL_UUID']}, timeout=5)
|
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:
|
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout) as e:
|
||||||
logging.error(f"Error while syncing to {ip}: {str(e)}")
|
logging.error(f"Error while syncing to {ip}: {str(e)}")
|
||||||
|
Reference in New Issue
Block a user