[Pkg-nagios-changes] [SCM] UNNAMED PROJECT branch, debian/master, updated. 810edbdd3feedbfe37f4a65bee50b57b2f60fa2a

Nicolas DUPEUX nicolas.dupeux at arkea.com
Tue Feb 28 22:19:04 UTC 2012


The following commit has been merged in the debian/master branch:
commit 0879cadd60a36abf1350919777537c68c427272a
Author: Nicolas DUPEUX <nicolas.dupeux at arkea.com>
Date:   Mon Feb 6 14:05:59 2012 +0100

    Constructor signature change due to cache implementation

diff --git a/shinken/modules/livestatus_broker/livestatus_request.py b/shinken/modules/livestatus_broker/livestatus_request.py
index fe3571b..952c0c6 100644
--- a/shinken/modules/livestatus_broker/livestatus_request.py
+++ b/shinken/modules/livestatus_broker/livestatus_request.py
@@ -77,11 +77,11 @@ class LiveStatusRequest:
                 query_cmds.append(line)
         if len(external_cmds) > 0:
             for external_cmd in external_cmds:
-                query = LiveStatusCommandQuery(self.datamgr, self.db, self.pnp_path, self.return_queue, self.counters)
+                query = LiveStatusCommandQuery(self.datamgr, self.query_cache, self.db, self.pnp_path, self.return_queue, self.counters)
                 query.parse_input(external_cmd)
                 self.queries.append(query)
         if len(wait_cmds) > 1:
-            query = LiveStatusWaitQuery(self.datamgr, self.db, self.pnp_path, self.return_queue, self.counters)
+            query = LiveStatusWaitQuery(self.datamgr, self.query_cache, self.db, self.pnp_path, self.return_queue, self.counters)
             query.parse_input('\n'.join(wait_cmds))
             self.queries.append(query)
         if len(query_cmds) > 0:

-- 
UNNAMED PROJECT



More information about the Pkg-nagios-changes mailing list