You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: checkpoint_engine/ps.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1284,9 +1284,9 @@ def _update_per_bucket(
1284
1284
dist.broadcast(buffer_b, src=brank)
1285
1285
resp=socket.recv()
1286
1286
ifresp!=b"":
1287
-
exception_obj=pickle.loads(resp)
1287
+
msg=pickle.loads(resp)
1288
1288
logger.error(
1289
-
f"[rank{self._rank}] receive error response '{type(exception_obj).__name__}: {exception_obj}' from rank {receiver_rank} for bucket {gidx} in checkpoint {checkpoint_name}"
1289
+
f"[rank{self._rank}] receive error response from rank {receiver_rank} for bucket {gidx} in checkpoint {checkpoint_name}: {msg}"
0 commit comments