Github user franz1981 commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/2089#discussion_r187948310 --- Diff: artemis-server/src/main/java/org/apache/activemq/artemis/core/server/cluster/ha/ReplicatedPolicy.java --- @@ -158,6 +164,7 @@ public ReplicaPolicy getReplicaPolicy() { if (groupName != null && groupName.length() > 0) { replicaPolicy.setGroupName(groupName); } + replicaPolicy.setQuorumVoteWait(quorumVoteWait); --- End diff -- pass the parameter using the `ReplicePolicy` constructor to not escape the validation that it could perform
---