remove uneeded prints

This commit is contained in:
Jeffrey Picard 2021-06-17 13:36:54 -04:00 committed by Victor Shyba
parent 92ae1a565b
commit a4955a2b79
2 changed files with 0 additions and 2 deletions

View file

@ -2610,7 +2610,6 @@ class Daemon(metaclass=JSONRPCServerType):
Returns: {Paginated[Output]}
"""
if os.environ.get("GO_HUB") and os.environ.get("GO_HUB") == "true":
log.warning("### Using go hub! ###")
host = os.environ.get("HUB_HOST", "localhost")
port = os.environ.get("HUB_PORT", "50051")
kwargs['new_sdk_server'] = f"{host}:{port}"

View file

@ -479,7 +479,6 @@ class HubProcess(asyncio.SubprocessProtocol):
raise SystemError(data.decode())
if b'listening on' in data:
self.ready.set()
print(data.decode("utf-8"))
def process_exited(self):
self.stopped.set()