We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b46510 commit 4b4a6d1Copy full SHA for 4b4a6d1
marklogic-data-hub/src/test/java/com/marklogic/hub/HubTestBase.java
@@ -422,6 +422,13 @@ protected HubConfigImpl getDataHubAdminConfig() {
422
}
423
adminHubConfig.setMlUsername(user);
424
adminHubConfig.setMlPassword(password);
425
+
426
+ // Turning off CMA for resources that have bugs in ML 9.0-7/8
427
+ adminHubConfig.getAppConfig().getCmaConfig().setCombineRequests(false);
428
+ adminHubConfig.getAppConfig().getCmaConfig().setDeployDatabases(false);
429
+ adminHubConfig.getAppConfig().getCmaConfig().setDeployRoles(false);
430
+ adminHubConfig.getAppConfig().getCmaConfig().setDeployUsers(false);
431
432
wireClients();
433
return adminHubConfig;
434
0 commit comments