test: log status response

This commit is contained in:
Roman 2025-01-07 14:40:28 +08:00
parent 5e2e0b5487
commit ce095b45a2
No known key found for this signature in database
GPG Key ID: B8FE070B54E11B75
2 changed files with 4 additions and 3 deletions

View File

@ -21,5 +21,6 @@ class REST(BaseClient):
return self.make_request(method, url, headers=headers, data=payload)
def status(self):
info_response = self.rest_call("get", "cl/status")
return info_response.json()
status_response = self.rest_call("get", "cl/status")
logger.debug(f"Status response {status_response}")
return status_response.json()

View File

@ -78,7 +78,7 @@ class NomosNode:
container_ip=self._ext_ip,
volumes=self._volumes,
entrypoint=self._entrypoint,
remove_container=True,
remove_container=False,
name=self._container_name,
)