Skip to content

Commit 440460d

Browse files
authored
Fix flaky test_feature_store fixture (feast-dev#1447)
Signed-off-by: Jacob Klegar <jacob@tecton.ai>
1 parent ba98c8a commit 440460d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/tests/test_feature_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def feature_store_with_gcs_registry(self):
5050
from google.cloud import storage
5151

5252
storage_client = storage.Client()
53-
bucket_name = f"feast-registry-test-{int(time.time())}"
53+
bucket_name = f"feast-registry-test-{int(time.time() * 1000)}"
5454
bucket = storage_client.bucket(bucket_name)
5555
bucket = storage_client.create_bucket(bucket)
5656
bucket.add_lifecycle_delete_rule(

0 commit comments

Comments
 (0)