Skip to content

Commit

Permalink
Fix flaky test_feature_store fixture (#1447)
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Klegar <jacob@tecton.ai>
  • Loading branch information
jklegar committed Apr 9, 2021
1 parent ba98c8a commit 440460d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/tests/test_feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def feature_store_with_gcs_registry(self):
from google.cloud import storage

storage_client = storage.Client()
bucket_name = f"feast-registry-test-{int(time.time())}"
bucket_name = f"feast-registry-test-{int(time.time() * 1000)}"
bucket = storage_client.bucket(bucket_name)
bucket = storage_client.create_bucket(bucket)
bucket.add_lifecycle_delete_rule(
Expand Down

0 comments on commit 440460d

Please sign in to comment.