* fixes
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
from . import base
|
||||
import logging
|
||||
|
||||
class Callback(base.BaseHandler):
|
||||
|
||||
@@ -15,6 +16,7 @@ class Callback(base.BaseHandler):
|
||||
self.run(payload, True)
|
||||
|
||||
def run(self, payload, instream=False):
|
||||
logging.debug("Running %s in %s" % (self.name, self._pointer))
|
||||
if not self._instream or instream:
|
||||
base.BaseHandler.run(self, payload)
|
||||
#if self._thread:
|
||||
|
||||
@@ -9,15 +9,18 @@ class Waiter(base.BaseHandler):
|
||||
self._payload = queue.Queue()
|
||||
|
||||
def prerun(self, payload):
|
||||
logging.debug("Putting into Waiter %s" % self.name)
|
||||
self._payload.put(payload)
|
||||
|
||||
def run(self, payload):
|
||||
pass
|
||||
|
||||
def wait(self, timeout=60):
|
||||
logging.debug("Waiting on %s." % self.name)
|
||||
try:
|
||||
return self._payload.get(True, timeout)
|
||||
except queue.Empty:
|
||||
logging.warning("Timed out waiting for %s" % self.name)
|
||||
return False
|
||||
|
||||
def checkDelete(self):
|
||||
|
||||
Reference in New Issue
Block a user