From 8821ae22eeb35540acce59875d3aaaf3aab0284b Mon Sep 17 00:00:00 2001 From: sowmyasri Date: Thu, 4 Jul 2024 11:23:11 +0200 Subject: [PATCH] removed raise in the round handler --- fedn/network/combiner/roundhandler.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fedn/network/combiner/roundhandler.py b/fedn/network/combiner/roundhandler.py index ef9029de9..816957323 100644 --- a/fedn/network/combiner/roundhandler.py +++ b/fedn/network/combiner/roundhandler.py @@ -309,7 +309,6 @@ def _assign_round_clients(self, n, type="trainers"): clients = self.server.get_active_trainers() else: logger.error("(ERROR): {} is not a supported type of client".format(type)) - raise # If the number of requested trainers exceeds the number of available, use all available. if n > len(clients):