travis-bowen commented on code in PR #1262:
URL: https://github.com/apache/polaris/pull/1262#discussion_r2017113832
##########
regtests/t_pyspark/src/conftest.py:
##########
@@ -84,7 +84,8 @@ def aws_bucket_base_location_prefix():
"""
default_val = 'polaris_test'
bucket_prefix = os.getenv('AWS_BUCKET_BASE_LOCATION_PREFIX', default_val)
- return default_val if bucket_prefix == '' else bucket_prefix
+ # Add random string to prefix to prevent base location overlaps
+ return f"{default_val if bucket_prefix == '' else
bucket_prefix}_{str(uuid.uuid4())[-5:]}"
Review Comment:
Not in particular! Changed it to your suggestion!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]