From 676fb1d6f3caee651e374f46f1f453b920b1f03c Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 1 Dec 2016 19:47:50 +0100 Subject: [PATCH] Remove gerritbot limit test gerritbot can now handle more than 120 channels, remove the test for it. Change-Id: If6d1630581762aab93c979ba7852f845bc2846f5 Depends-On: Ifafeed77e640bc7b5910251c619358a8a2bd78a6 --- tools/irc_tests.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tools/irc_tests.py b/tools/irc_tests.py index af31ce74f1..f5402de25c 100755 --- a/tools/irc_tests.py +++ b/tools/irc_tests.py @@ -59,17 +59,6 @@ def access_gerrit_check(): print("ERROR: %s is missing from accessbot" % channel) errors = True - # IRC has a limit of 120 channels that we unfortunately hit with - # gerritbot. If we try connect to more, it will not connect to - # all. Avoid this situation. - if len(gerrit_config) > 120: - print("ERROR: gerritbot can only handle 120 channels but found %s." - % len(gerrit_config)) - print("Sorry, we're at our limit and cannot add more for now.") - print("If you want to help set up another instance contact the " - "infra team in #openstack-infra.\n") - errors = True - return errors