Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 803f130

Browse files
committed
#219 Fixing UpdateRestApiServersCommand
Was referencing wrong file
1 parent f7d883d commit 803f130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/marklogic/appdeployer/command/appservers/UpdateRestApiServersCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected File findRestApiConfigFile(CommandContext context) {
6767
} else {
6868
File f = null;
6969
for (ConfigDir configDir : context.getAppConfig().getConfigDirs()) {
70-
File tmpFile = configDir.getRestApiFile();
70+
File tmpFile = configDir.getRestApiServerFile();
7171
if (tmpFile.exists()) {
7272
f = tmpFile;
7373
if (logger.isInfoEnabled()) {

0 commit comments

Comments
 (0)