Skip to content

Commit

Permalink
Fixed a race condition and client privacy.json issue. (#1164) (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
yhwen authored Dec 1, 2022
1 parent 311ab02 commit 01f3bb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nvflare/private/fed/app/fl_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from .fl_app_validator import FLAppValidator

FL_PACKAGES = ["nvflare"]
FL_MODULES = ["server", "client", "app"]
FL_MODULES = ["server", "client", "app_common", "private"]


class FLServerStarterConfiger(JsonConfigurator):
Expand Down
2 changes: 1 addition & 1 deletion nvflare/private/fed/server/fed_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def GetTask(self, request, context):
return task

def _process_task_request(self, client, fl_ctx, shared_fl_ctx):
task_name = SpecialTaskName.END_RUN
task_name = SpecialTaskName.TRY_AGAIN
task_id = ""
shareable = None
try:
Expand Down

0 comments on commit 01f3bb4

Please sign in to comment.