git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@991102 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2010-08-31 07:30:13 +00:00
parent f8a601a85b
commit 37b9cb82e1
2 changed files with 3 additions and 3 deletions

View File

@ -213,9 +213,9 @@ public class ActiveMQConnectionRequestInfo implements ConnectionRequestInfo, Ser
return Boolean.valueOf(redeliveryPolicy().isUseExponentialBackOff());
}
public void setRedeliveryBackOffMultiplier(Short value) {
public void setRedeliveryBackOffMultiplier(Double value) {
if (value != null) {
redeliveryPolicy().setBackOffMultiplier(value.shortValue());
redeliveryPolicy().setBackOffMultiplier(value);
}
}

View File

@ -313,7 +313,7 @@ public class ActiveMQConnectionSupport {
/**
* @param value
*/
public void setRedeliveryBackOffMultiplier(Short value) {
public void setRedeliveryBackOffMultiplier(Double value) {
if ( log.isDebugEnabled() ) {
log.debug("setting [redeliveryBackOffMultiplier] to: " + value);
}