Reduce the number of extra databases to prevent using too many files

This commit is contained in:
A.J. Beamon 2022-08-06 05:34:41 -07:00
parent 91ccb82605
commit 1569f033c8
2 changed files with 1 additions and 2 deletions

View File

@ -259,7 +259,6 @@ struct MetaclusterManagementWorkload : TestWorkload {
for (auto localItr = self->dataDbs.find(clusterName1);
localItr != self->dataDbs.find(clusterName2) && count < limit;
++localItr) {
fmt::print("Checking cluster {} {}\n", printable(localItr->first), localItr->second.registered);
if (localItr->second.registered) {
ASSERT(resultItr != clusterList.end());
ASSERT(resultItr->first == localItr->first);

View File

@ -3,7 +3,7 @@ allowDefaultTenant = false
allowDisablingTenants = false
allowCreatingTenants = false
extraDatabaseMode = 'Multiple'
extraDatabaseCount = 10
extraDatabaseCount = 5
[[test]]
testTitle = 'MetaclusterManagementTest'