Fixing a potential null pointer exception when attempting to use
scheduler support with replicated levelDB, which is currently not
supported.

(cherry picked from commit 130455c925)
This commit is contained in:
Christopher L. Shannon (cshannon) 2015-09-21 17:37:02 +00:00
parent 70a49b0fa2
commit 5488d8a030
1 changed files with 1 additions and 1 deletions

View File

@ -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) {