Skip to content

Commit 36c9ac6

Browse files
author
Chuyang Deng
committed
fix: use default bucket for checkpoint_s3_uri
1 parent a98f488 commit 36c9ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integ/test_tf_script_mode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def test_mnist(sagemaker_session, instance_type):
7171
reason="checkpoint s3 bucket is in us-east-1, ListObjectsV2 will fail in other regions",
7272
)
7373
def test_checkpoint_config(sagemaker_session, instance_type):
74-
checkpoint_s3_uri = "s3://142577830533-us-east-1-sagemaker-checkpoint"
74+
checkpoint_s3_uri = "s3://{}".format(sagemaker_session.default_bucket())
7575
checkpoint_local_path = "/test/checkpoint/path"
7676
estimator = TensorFlow(
7777
entry_point=SCRIPT,

0 commit comments

Comments
 (0)