Index: trunk/pybal/pybal/monitors/proxyfetch.py |
— | — | @@ -34,8 +34,8 @@ |
35 | 35 | # Call ancestor constructor |
36 | 36 | super(ProxyFetchMonitoringProtocol, self).__init__(coordinator, server, configuration) |
37 | 37 | |
38 | | - self.intvCheck = self.INTV_CHECK |
39 | | - self.toGET = self.TIMEOUT_GET |
| 38 | + self.intvCheck = self._getConfigInt('interval', self.INTV_CHECK) |
| 39 | + self.toGET = self._getConfigInt('timeout', self.TIMEOUT_GET) |
40 | 40 | |
41 | 41 | self.checkCall = None |
42 | 42 | |