mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-5506 - fix typo in leveldb attribute ZkSessionTmeout - now with the i, store.setZkSessionTimeout
This commit is contained in:
parent
5ebe71cec9
commit
4d8489ba38
|
@ -34,7 +34,7 @@ public interface ReplicatedLevelDBStoreViewMBean {
|
|||
@MBeanInfo("The path in ZooKeeper to hold master elections.")
|
||||
String getZkPath();
|
||||
@MBeanInfo("The ZooKeeper session timeout.")
|
||||
String getZkSessionTmeout();
|
||||
String getZkSessionTimeout();
|
||||
@MBeanInfo("The address and port the master will bind for the replication protocol.")
|
||||
String getBind();
|
||||
@MBeanInfo("The number of replication nodes that will be part of the replication cluster.")
|
||||
|
|
|
@ -69,7 +69,7 @@ class ElectingLevelDBStore extends ProxyLevelDBStore {
|
|||
@BeanProperty
|
||||
var zkPath = "/default"
|
||||
@BeanProperty
|
||||
var zkSessionTmeout = "2s"
|
||||
var zkSessionTimeout = "2s"
|
||||
|
||||
var brokerName: String = _
|
||||
|
||||
|
@ -181,7 +181,7 @@ class ElectingLevelDBStore extends ProxyLevelDBStore {
|
|||
log.close
|
||||
}
|
||||
|
||||
zk_client = new ZKClient(zkAddress, Timespan.parse(zkSessionTmeout), null)
|
||||
zk_client = new ZKClient(zkAddress, Timespan.parse(zkSessionTimeout), null)
|
||||
if( zkPassword!=null ) {
|
||||
zk_client.setPassword(zkPassword)
|
||||
}
|
||||
|
@ -415,7 +415,7 @@ class ReplicatedLevelDBStoreView(val store:ElectingLevelDBStore) extends Replica
|
|||
|
||||
def getZkAddress = zkAddress
|
||||
def getZkPath = zkPath
|
||||
def getZkSessionTmeout = zkSessionTmeout
|
||||
def getZkSessionTimeout = zkSessionTimeout
|
||||
def getBind = bind
|
||||
def getReplicas = replicas
|
||||
|
||||
|
|
|
@ -447,7 +447,7 @@ public class ReplicatedLevelDBBrokerTest extends ZooKeeperTestSupport {
|
|||
store.setContainer(id);
|
||||
store.setReplicas(3);
|
||||
store.setZkAddress("localhost:" + connector.getLocalPort());
|
||||
store.setZkSessionTmeout("15s");
|
||||
store.setZkSessionTimeout("15s");
|
||||
store.setHostname("localhost");
|
||||
store.setBind("tcp://0.0.0.0:0");
|
||||
return store;
|
||||
|
|
Loading…
Reference in New Issue