This repository was archived by the owner on Sep 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/com/marklogic/mgmt Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ public ManageConfig newManageConfig() {
2020 String mlUsername = getProperty ("mlUsername" );
2121 String mlPassword = getProperty ("mlPassword" );
2222
23- String prop = getProperty ("mlHost " );
23+ String prop = getProperty ("mlManageHost " );
2424 if (prop != null ) {
2525 logger .info ("Manage host: " + prop );
2626 c .setHost (prop );
2727 } else {
28- prop = getProperty ("mlManageHost " );
28+ prop = getProperty ("mlHost " );
2929 if (prop != null ) {
3030 logger .info ("Manage host: " + prop );
3131 c .setHost (prop );
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ public AdminConfig newAdminConfig() {
2020 String mlUsername = getProperty ("mlUsername" );
2121 String mlPassword = getProperty ("mlPassword" );
2222
23- String prop = getProperty ("mlHost " );
23+ String prop = getProperty ("mlAdminHost " );
2424 if (prop != null ) {
2525 logger .info ("Admin host: " + prop );
2626 c .setHost (prop );
2727 } else {
28- prop = getProperty ("mlAdminHost " );
28+ prop = getProperty ("mlHost " );
2929 if (prop != null ) {
3030 logger .info ("Admin host: " + prop );
3131 c .setHost (prop );
You can’t perform that action at this time.
0 commit comments