diff --git a/weaviate/client_base.py b/weaviate/client_base.py index 2a3dbfbaa..6b2e3d151 100644 --- a/weaviate/client_base.py +++ b/weaviate/client_base.py @@ -168,7 +168,6 @@ async def is_live(self) -> bool: return True return False except Exception as e: - print(e) return False async def is_ready(self) -> bool: @@ -178,7 +177,6 @@ async def is_ready(self) -> bool: return True return False except Exception as e: - print(e) return False async def graphql_raw_query(self, gql_query: str) -> _RawGQLReturn: