ARTEMIS-569 correct method spelling
This commit is contained in:
parent
ee84d042b6
commit
c408ece7e7
|
@ -290,7 +290,7 @@ public final class ClusterConnectionConfiguration implements Serializable {
|
||||||
return producerWindowSize;
|
return producerWindowSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ClusterConnectionConfiguration setProducerindowSize(int producerWindowSize) {
|
public ClusterConnectionConfiguration setProducerWindowSize(int producerWindowSize) {
|
||||||
this.producerWindowSize = producerWindowSize;
|
this.producerWindowSize = producerWindowSize;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1373,7 +1373,7 @@ public final class FileConfigurationParser extends XMLConfigurationUtil {
|
||||||
.setMessageLoadBalancingType(messageLoadBalancingType)
|
.setMessageLoadBalancingType(messageLoadBalancingType)
|
||||||
.setMaxHops(maxHops)
|
.setMaxHops(maxHops)
|
||||||
.setConfirmationWindowSize(confirmationWindowSize)
|
.setConfirmationWindowSize(confirmationWindowSize)
|
||||||
.setProducerindowSize(producerWindowSize)
|
.setProducerWindowSize(producerWindowSize)
|
||||||
.setAllowDirectConnectionsOnly(allowDirectConnectionsOnly)
|
.setAllowDirectConnectionsOnly(allowDirectConnectionsOnly)
|
||||||
.setClusterNotificationInterval(clusterNotificationInterval)
|
.setClusterNotificationInterval(clusterNotificationInterval)
|
||||||
.setClusterNotificationAttempts(clusterNotificationAttempts);
|
.setClusterNotificationAttempts(clusterNotificationAttempts);
|
||||||
|
|
Loading…
Reference in New Issue