Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhellander committed May 14, 2024
1 parent d72fcac commit f38bcba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedn/network/combiner/combiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def _list_active_clients(self, channel):
if status != "online":
self.clients[client]["status"] = "online"
clients["update_active_clients"].append(client)
elif status == "online" or status == "available":
elif status != "offline":
self.clients[client]["status"] = "offline"
clients["update_offline_clients"].append(client)
# Update statestore with client status
Expand Down

0 comments on commit f38bcba

Please sign in to comment.