locust-cloud 1.5.10__py3-none-any.whl → 1.5.11__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 +3 -3
- locust_cloud/constants.py +1 -1
- locust_cloud/webui/dist/assets/{index-DRoU0Oli.js → index-BrOP_HSY.js} +78 -78
- locust_cloud/webui/dist/index.html +1 -1
- locust_cloud/webui/package.json +1 -1
- locust_cloud/webui/tsconfig.tsbuildinfo +1 -1
- locust_cloud/webui/yarn.lock +4 -4
- {locust_cloud-1.5.10.dist-info → locust_cloud-1.5.11.dist-info}/METADATA +1 -1
- {locust_cloud-1.5.10.dist-info → locust_cloud-1.5.11.dist-info}/RECORD +11 -11
- {locust_cloud-1.5.10.dist-info → locust_cloud-1.5.11.dist-info}/WHEEL +0 -0
- {locust_cloud-1.5.10.dist-info → locust_cloud-1.5.11.dist-info}/entry_points.txt +0 -0
locust_cloud/cloud.py
CHANGED
@@ -201,10 +201,10 @@ def main() -> None:
|
|
201
201
|
deployed_pods: list[Any] = []
|
202
202
|
worker_count: int = max(options.workers or math.ceil(options.users / USERS_PER_WORKER), 2)
|
203
203
|
os.environ["AWS_DEFAULT_REGION"] = options.region
|
204
|
-
if options.users >
|
205
|
-
logger.error("You asked for more than
|
204
|
+
if options.users > 5000000:
|
205
|
+
logger.error("You asked for more than 5000000 Users, that isn't allowed.")
|
206
206
|
sys.exit(1)
|
207
|
-
if worker_count >
|
207
|
+
if worker_count > 1000:
|
208
208
|
logger.error("You asked for more than 20 workers, that isn't allowed.")
|
209
209
|
sys.exit(1)
|
210
210
|
try:
|
locust_cloud/constants.py
CHANGED