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 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.error(f"Failed to clean up locust files: {e}")
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__":