Skip to content

Commit cd9237f

Browse files
Fix LauncherExecutor handle_event (#2414)
1 parent 5b88e43 commit cd9237f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

nvflare/app_common/executors/launcher_executor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ def handle_event(self, event_type: str, fl_ctx: FLContext) -> None:
143143
self.finalize(fl_ctx)
144144
self.log_info(fl_ctx, f"{EventType.END_RUN} event received - telling external to stop")
145145
super().handle_event(event_type, fl_ctx)
146+
else:
147+
super().handle_event(event_type, fl_ctx)
146148

147149
def execute(self, task_name: str, shareable: Shareable, fl_ctx: FLContext, abort_signal: Signal) -> Shareable:
148150
self.log_info(fl_ctx, f"execute for task ({task_name})")

0 commit comments

Comments
 (0)