locust-cloud 1.3.6__py3-none-any.whl → 1.3.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- locust_cloud/cloud.py +4 -3
- locust_cloud/webui/dist/assets/{index-BNhykfMR.js → index-CxyNnPLb.js} +35 -35
- locust_cloud/webui/dist/index.html +1 -1
- locust_cloud/webui/tsconfig.tsbuildinfo +1 -1
- {locust_cloud-1.3.6.dist-info → locust_cloud-1.3.8.dist-info}/METADATA +1 -1
- {locust_cloud-1.3.6.dist-info → locust_cloud-1.3.8.dist-info}/RECORD +8 -8
- {locust_cloud-1.3.6.dist-info → locust_cloud-1.3.8.dist-info}/WHEEL +0 -0
- {locust_cloud-1.3.6.dist-info → locust_cloud-1.3.8.dist-info}/entry_points.txt +0 -0
locust_cloud/cloud.py
CHANGED
@@ -421,10 +421,11 @@ def delete(s3_bucket, credential_manager):
|
|
421
421
|
s3 = credential_manager.session.resource("s3")
|
422
422
|
bucket = s3.Bucket(s3_bucket)
|
423
423
|
bucket.objects.all().delete()
|
424
|
-
logger.info("Done! ✨")
|
425
424
|
except ClientError as e:
|
426
|
-
logger.
|
427
|
-
sys.exit(1)
|
425
|
+
logger.debug(f"Failed to clean up locust files: {e}")
|
426
|
+
# sys.exit(1)
|
427
|
+
|
428
|
+
logger.info("Done! ✨")
|
428
429
|
|
429
430
|
|
430
431
|
if __name__ == "__main__":
|