mirror of https://github.com/apache/activemq.git
Fixing a potential null pointer exception when attempting to use scheduler support with replicated levelDB, which is currently not supported.
This commit is contained in:
parent
00d19e7b66
commit
130455c925
|
@ -46,7 +46,7 @@ abstract class ProxyLevelDBStore extends LockableServiceSupport with BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
def createJobSchedulerStore():JobSchedulerStore = {
|
def createJobSchedulerStore():JobSchedulerStore = {
|
||||||
return proxy_target.createJobSchedulerStore()
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
def setDirectory(dir: File) {
|
def setDirectory(dir: File) {
|
||||||
|
|
Loading…
Reference in New Issue