From fcdb2cec22533dd8d0b6e272704f44feebfd2272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com> Date: Mon, 2 Sep 2024 15:35:56 +0200 Subject: [PATCH] longer stress tests --- CHANGELOG.md | 2 +- README.md | 4 ++-- stress_tests/client.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 476eae3..a4251e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,4 +7,4 @@ have been made so far, between releases. * removed the requirement for a Queue that for it to be equal to other Queue if their types do match * compile_definitions will now depend on requests * added support for infinite (None) timeouts during start -* stress tests will run for 60 seconds now +* stress tests will run for 120 seconds now diff --git a/README.md b/README.md index 60143d8..e69b7c6 100644 --- a/README.md +++ b/README.md @@ -23,14 +23,14 @@ Why CoolAMQP? * AMQP 0.9.1 client that's native Python * heavily optimized for speed -* geared towards interfacing with [RabbitMQ](https://www.rabbitmq.com/ +* geared towards interfacing with [RabbitMQ](https://www.rabbitmq.com/) * supports custom RabbitMQ commands, such as * [Connection blocking](https://www.rabbitmq.com/docs/connection-blocked) * [Publisher confirms](https://www.rabbitmq.com/docs/confirms#publisher-confirms) * [Negative Acknowledgements](https://www.rabbitmq.com/docs/nack) * traceable using [opentracing](https://opentracing.io/) * code coverage is 80% at the moment -* stress tests are part of each release +* 120 second stress tests are part of each release Documentation (WIP) is available at [our site](http://smokserwis.docs.smok.co/coolamqp). diff --git a/stress_tests/client.py b/stress_tests/client.py index f2e6427..d947943 100644 --- a/stress_tests/client.py +++ b/stress_tests/client.py @@ -19,7 +19,7 @@ CONNECTIONS_PER_SECOND = 0.9 DISCONNECTS_PER_SECOND_PER_CONNECTION = 0.1 ANSWER_PROBABILITY = 0.7 -RUNNING_INTERVAL = 60 # run for 60 seconds +RUNNING_INTERVAL = 120 # run for 120 seconds -- GitLab