Skip to content

Commit 0f32ca3

Browse files
committed
DEVEXP-626 Fixed DeployToReplicaTask
Correctly constructing a deployer. Verified no other occurrences existed of using the deprecated SimpleAppDeployer constructor.
1 parent 4aa8e63 commit 0f32ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/com/marklogic/gradle/task/DeployToReplicaTask.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ class DeployToReplicaTask extends MarkLogicTask {
3939
commandListSupplier.get() :
4040
new CommandMapBuilder().getCommandsForReplicaCluster()
4141

42-
new SimpleAppDeployer(commands).deploy(getAppConfig())
42+
newAppDeployer(commands).deploy(getAppConfig())
4343
}
4444
}

0 commit comments

Comments
 (0)