From 6e6e6d780431fb4b9f2647e2bddbf2f0cbae6a02 Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Sep 09 2016 14:23:53 +0000 Subject: Ticket 48921 - CI Replication stress tests have limits set too low Description: The number of users to add and delete was incorrectly set low for debugging purposes, but it was not raised back up to the correct value when it was committed to the source tree. https://fedorahosted.org/389/ticket/48921 Reviewed by: mreynolds (one line commit rule) (cherry picked from commit 480d79d00ba6467aeaedcd3db67c24c79709b225) --- diff --git a/dirsrvtests/tests/stress/replication/mmr_01_4m-2h-4c_test.py b/dirsrvtests/tests/stress/replication/mmr_01_4m-2h-4c_test.py index 95c0b71..2ac4723 100644 --- a/dirsrvtests/tests/stress/replication/mmr_01_4m-2h-4c_test.py +++ b/dirsrvtests/tests/stress/replication/mmr_01_4m-2h-4c_test.py @@ -16,7 +16,7 @@ logging.getLogger(__name__).setLevel(logging.INFO) log = logging.getLogger(__name__) DEBUGGING = False -ADD_DEL_COUNT = 500 +ADD_DEL_COUNT = 5000 MAX_LOOPS = 5 TEST_CONVERGE_LATENCY = True CONVERGENCE_TIMEOUT = '60' diff --git a/dirsrvtests/tests/stress/replication/mmr_01_4m_test.py b/dirsrvtests/tests/stress/replication/mmr_01_4m_test.py index c48a070..b7d677e 100644 --- a/dirsrvtests/tests/stress/replication/mmr_01_4m_test.py +++ b/dirsrvtests/tests/stress/replication/mmr_01_4m_test.py @@ -16,7 +16,7 @@ logging.getLogger(__name__).setLevel(logging.DEBUG) log = logging.getLogger(__name__) DEBUGGING = False -ADD_DEL_COUNT = 500 +ADD_DEL_COUNT = 5000 MAX_LOOPS = 5 TEST_CONVERGE_LATENCY = True CONVERGENCE_TIMEOUT = '60'