diff --git a/fedn/network/api/interface.py b/fedn/network/api/interface.py index 9a1ff3447..857e34fbc 100644 --- a/fedn/network/api/interface.py +++ b/fedn/network/api/interface.py @@ -88,7 +88,6 @@ def get_all_combiners(self, limit=None, skip=None): response = self.statestore.get_combiners(limit, skip, projection=projection) arr = [] for element in response["result"]: - print(element, flush=True) obj = { "name": element["name"], "updated_at": element["updated_at"], diff --git a/fedn/network/api/server.py b/fedn/network/api/server.py index d32105dc3..67ade6e5a 100644 --- a/fedn/network/api/server.py +++ b/fedn/network/api/server.py @@ -631,19 +631,10 @@ def list_combiners_data(): def check_health(host, fqdn, port): - # Server address and port server_address = f"{fqdn}:{port}" - - # Create the gRPC channel channel = grpc.secure_channel(server_address, grpc.ssl_channel_credentials()) - - # Add the metadata metadata = [('grpc-server', host)] - - # Create the health check stub stub = health_pb2_grpc.HealthStub(channel) - - # Create the health check request request = health_pb2.HealthCheckRequest(service='') try: