diff --git a/port.py b/port.py index 20e13ec..8696aa8 100644 --- a/port.py +++ b/port.py @@ -1054,11 +1054,11 @@ class Portainer: def recreate_container(self,service_id, pull=False): """Restart a service on an endpoint.""" path = f"/docker/{self.endpoint_id}/containers/{service_id}/recreate" - print(path) + #print(path) params={"pullImage": pull} try: resp = self._api_post(path, json=params, timeout=20) - print(resp) + #print(resp) except ValueError as e: print(f"Error restarting service: {e}") return []