Skip to content

Commit 7271b0c

Browse files
authored
[RLlib] Broken restore from remote - Add missing FileSystem argument (#58324)
1 parent 9268934 commit 7271b0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rllib/algorithms/algorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def from_checkpoint(
343343
new="Algorithm.from_checkpoint(path=...)",
344344
error=True,
345345
)
346-
checkpoint_info = get_checkpoint_info(path)
346+
checkpoint_info = get_checkpoint_info(path, filesystem)
347347

348348
# New API stack -> Use Checkpointable's default implementation.
349349
if checkpoint_info["checkpoint_version"] >= version.Version("2.0"):

0 commit comments

Comments
 (0)