Skip to content

Commit 6c017c2

Browse files
committed
Removed unused variable.
1 parent 60a08d2 commit 6c017c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/nvidia_resiliency_ext/fault_tolerance/launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ def _start_workers(self, worker_group: WorkerGroup) -> Dict[int, Any]:
620620
restart_count = spec.max_restarts - self._remaining_restarts
621621

622622
# Record worker start start event
623-
start_start_event_id = record_profiling_event(
623+
record_profiling_event(
624624
ProfilingEvent.WORKER_START_STARTED,
625625
node_id=self._node_id,
626626
rank=worker_group.group_rank,
@@ -698,7 +698,7 @@ def _start_workers(self, worker_group: WorkerGroup) -> Dict[int, Any]:
698698
self._children_pgids = {os.getpgid(p) for p in self._pcontext.pids().values()}
699699

700700
# Record worker start completion event
701-
start_completion_event_id = record_profiling_event(
701+
record_profiling_event(
702702
ProfilingEvent.WORKER_START_COMPLETED,
703703
node_id=self._node_id,
704704
rank=worker_group.group_rank,

0 commit comments

Comments
 (0)