|
From: Narasimha S. <nsh...@us...> - 2012-05-18 15:17:15
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via f72ae66b66102b892ded4ba2fd4a17330f23662d (commit)
from 13f7c1262b5b6170ce17e89242c1da0585c44fba (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f72ae66b66102b892ded4ba2fd4a17330f23662d
Author: Narasimha Sharoff <nsh...@us...>
Date: Fri May 18 08:15:23 2012 -0700
[ 3524819 ] sfcb may hang on ac call to indication subscription
-----------------------------------------------------------------------
Summary of changes:
diff --git a/ChangeLog b/ChangeLog
index a3550b9..43d757d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-18 Narasimha Sharoff <nsh...@us...>
+
+ * indCIMXMLHander.c:
+ [ 3524819 ] sfcb may hang on ac call to indication subscription
+
2012-05-17 Chris Buccella <buc...@li...>
* brokerUpc.c,
diff --git a/NEWS b/NEWS
index 196a512..7982dba 100644
--- a/NEWS
+++ b/NEWS
@@ -104,6 +104,7 @@ Bugs Fixed:
- 3517573 Problem with SequenceContext migration
- 3525651 CMSetPropertyFilter not CMPI 2.0 compliant
- 3527693 Property filters don't work for enum upcalls
+- 3524819 sfcb may hang on ac call to indication subscription
Changes in 1.3.14
=================
diff --git a/indCIMXMLHandler.c b/indCIMXMLHandler.c
index e9de848..a2dd6c1 100644
--- a/indCIMXMLHandler.c
+++ b/indCIMXMLHandler.c
@@ -1004,7 +1004,13 @@ int countLD (const CMPIContext * ctx) {
int initIndCIMXML(const CMPIContext * ctx)
{
+ unsigned int ri;
_SFCB_ENTER(TRACE_INDPROVIDER, "initIndCIMXML");
+
+ /* If RI is disabled, return */
+ getControlUNum("DeliveryRetryAttempts", &ri);
+ if (!ri) _SFCB_RETURN(0);
+
//Refill the queue if there were any from the last run
refillRetryQ(ctx);
if ( LDcount == -1 ) {
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|