Omaha #3622 Fix null pointer in ServiceBackupLockManager
Change-Id: Idd29ac0b5330d9f2167c8fdc4acfd6e1ed961a99 Former-commit-id: e6ae629d1667943ae7bf25598f32e2b479e748b1
This commit is contained in:
parent
8c0a087bf0
commit
1c6fa09d4f
1 changed files with 31 additions and 25 deletions
|
@ -1,4 +1,5 @@
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
||||||
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
||||||
|
|
||||||
|
@ -36,11 +37,11 @@
|
||||||
|
|
||||||
<bean id="siteActivateNotifyFilter"
|
<bean id="siteActivateNotifyFilter"
|
||||||
class="com.raytheon.uf.edex.site.notify.SiteActivateNotifyFilter" />
|
class="com.raytheon.uf.edex.site.notify.SiteActivateNotifyFilter" />
|
||||||
<bean id="siteActivationMonitor" class="com.raytheon.uf.edex.site.SiteActivationMonitor" factory-method="getInstance"/>
|
<bean id="siteActivationMonitor" class="com.raytheon.uf.edex.site.SiteActivationMonitor"
|
||||||
|
factory-method="getInstance" />
|
||||||
|
|
||||||
<camelContext id="siteActivationMonitoring"
|
<camelContext id="siteActivationMonitoring"
|
||||||
xmlns="http://camel.apache.org/schema/spring"
|
xmlns="http://camel.apache.org/schema/spring" errorHandlerRef="errorHandler">
|
||||||
errorHandlerRef="errorHandler">
|
|
||||||
|
|
||||||
<route id="siteActivateNotify">
|
<route id="siteActivateNotify">
|
||||||
<from uri="jms-generic:topic:siteActivateNotification" />
|
<from uri="jms-generic:topic:siteActivateNotification" />
|
||||||
|
@ -48,8 +49,13 @@
|
||||||
<filter>
|
<filter>
|
||||||
<method bean="siteActivateNotifyFilter" method="isSiteActivateNotification" />
|
<method bean="siteActivateNotifyFilter" method="isSiteActivateNotification" />
|
||||||
<bean ref="siteActivationMonitor" method="handleNotification" />
|
<bean ref="siteActivationMonitor" method="handleNotification" />
|
||||||
|
<filter>
|
||||||
|
<simple>${body} == null</simple>
|
||||||
|
<stop />
|
||||||
|
</filter>
|
||||||
<bean ref="serializationUtil" method="transformToThrift" />
|
<bean ref="serializationUtil" method="transformToThrift" />
|
||||||
<to uri="jms-generic:topic:edex.alerts.siteActivate?timeToLive=60000" />
|
<to
|
||||||
|
uri="jms-generic:topic:edex.alerts.siteActivate?timeToLive=60000" />
|
||||||
</filter>
|
</filter>
|
||||||
</route>
|
</route>
|
||||||
</camelContext>
|
</camelContext>
|
||||||
|
|
Loading…
Add table
Reference in a new issue