Skip to content

Commit

Permalink
Merge pull request #2127 from FedML-AI/alexleung/dev_branch_latest
Browse files Browse the repository at this point in the history
[CoreEngine] make the server status work.
  • Loading branch information
fedml-alex authored May 21, 2024
2 parents a677e13 + 2306ee3 commit f1b7b50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def run_status_dispatcher(self, status_event, status_queue,
message_center=message_center)
else:
status_manager_instances[run_id_str].edge_id = status_entity.edge_id
if status_entity.server_id is None and status_entity.server_id != 0:
if status_entity.server_id is not None and status_entity.server_id != 0:
status_manager_instances[run_id_str].server_id = status_entity.server_id

# if the job status is completed then continue
Expand Down

0 comments on commit f1b7b50

Please sign in to comment.