Skip to content

Commit

Permalink
test to fix client sync issues (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklastheman authored Apr 26, 2024
1 parent 2b91787 commit 20c1767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedn/fedn/network/combiner/combiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def _list_active_clients(self, channel):
if (now - then) < timedelta(seconds=10):
clients["active_clients"].append(client)
# If client has changed status, update statestore
if status == "offline":
if status != "online":
self.clients[client]["status"] = "online"
clients["update_active_clients"].append(client)
else:
Expand Down

0 comments on commit 20c1767

Please sign in to comment.