Skip to content

Commit f022996

Browse files
committed
fix
1 parent eb71b2d commit f022996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/local/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def move_to_destination(source, destination, job_name, sagemaker_session):
6565
elif parsed_uri.scheme == "s3":
6666
bucket = parsed_uri.netloc
6767
path = s3.s3_path_join(parsed_uri.path, job_name)
68-
final_uri = s3.s3_path_join(bucket, path)
68+
final_uri = s3.s3_path_join("s3://", bucket, path)
6969
sagemaker_session.upload_data(source, bucket, path)
7070
else:
7171
raise ValueError("Invalid destination URI, must be s3:// or file://, got: %s" % destination)

0 commit comments

Comments
 (0)