From 81b22855a9a7ebd21210142c5300a847fdc1981c Mon Sep 17 00:00:00 2001 From: Emmanuel Ormancey <emmanuel.ormancey@cern.ch> Date: Fri, 8 Oct 2021 14:39:49 +0200 Subject: [PATCH] add groups --- Python/stress-testing/stress_testing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/stress-testing/stress_testing.py b/Python/stress-testing/stress_testing.py index 6d89e1a..efc39e6 100644 --- a/Python/stress-testing/stress_testing.py +++ b/Python/stress-testing/stress_testing.py @@ -92,7 +92,7 @@ def main(argv): cnt = 0 for channel_id in channel_ids: # Renew token - if (cnt % 1000) == 999: + if (cnt % 100) == 99: Config.renew() # Add one grappa gourp as member try: @@ -113,7 +113,7 @@ def main(argv): cnt = 0 for channel_id in channel_ids: # Renew token - if (cnt % 1000) == 999: + if (cnt % 100) == 99: Config.renew() for i in range(0, countnotifications): send_notification(channel_id, Config.NOTIFICATION_SUMMARY + str(i)) -- GitLab