From 0178c5f89656250bbf11dbb369e6a0792f6bf9df Mon Sep 17 00:00:00 2001 From: Jacob Klegar Date: Thu, 8 Apr 2021 21:40:51 -0400 Subject: [PATCH] Fix flaky test_feature_store fixture Signed-off-by: Jacob Klegar --- sdk/python/tests/test_feature_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/tests/test_feature_store.py b/sdk/python/tests/test_feature_store.py index 4d4c51cb44..036807c688 100644 --- a/sdk/python/tests/test_feature_store.py +++ b/sdk/python/tests/test_feature_store.py @@ -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(