From 652aa2fd3008e74f6518d5c62cc6ebf7efbb3c55 Mon Sep 17 00:00:00 2001 From: mwaldronii <74673675+mwaldronii@users.noreply.github.com> Date: Wed, 18 Nov 2020 13:10:17 -0800 Subject: [PATCH] Update prism.py Updated wbucket naming convention to prism_python_wbucket and expanded randint range --- prism/prism.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/prism.py b/prism/prism.py index 76f4525..6996cde 100644 --- a/prism/prism.py +++ b/prism/prism.py @@ -176,7 +176,7 @@ def create_bucket(self, schema, dataset_id, operation="Replace"): } data = { - "name": "bucket_" + str(random.randint(100000, 999999)), + "name": "prism_python_wbucket_" + str(random.randint(1000000, 9999999)), "operation": {"id": "Operation_Type=" + operation}, "targetDataset": {"id": dataset_id}, "schema": schema,