mirror of https://github.com/apache/activemq.git
Fix null pointer exception in doStop()
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@946681 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1a5ad284ed
commit
cd6f4f5650
|
@ -182,8 +182,12 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void doStop(ServiceStopper stopper) throws Exception {
|
public void doStop(ServiceStopper stopper) throws Exception {
|
||||||
|
if (this.queueSemaphore != null) {
|
||||||
this.queueSemaphore.drainPermits();
|
this.queueSemaphore.drainPermits();
|
||||||
|
}
|
||||||
|
if (this.topicSemaphore != null) {
|
||||||
this.topicSemaphore.drainPermits();
|
this.topicSemaphore.drainPermits();
|
||||||
|
}
|
||||||
if (this.queueExecutor != null) {
|
if (this.queueExecutor != null) {
|
||||||
this.queueExecutor.shutdownNow();
|
this.queueExecutor.shutdownNow();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue