aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/controller.py')
-rw-r--r--libmproxy/controller.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/libmproxy/controller.py b/libmproxy/controller.py
index 337f379d..6fed201f 100644
--- a/libmproxy/controller.py
+++ b/libmproxy/controller.py
@@ -65,6 +65,7 @@ class Master:
self.masterq = Queue.Queue()
def tick(self, q):
+ changed = False
try:
# This endless loop runs until the 'Queue.Empty'
# exception is thrown. If more than one request is in
@@ -74,8 +75,10 @@ class Master:
# Small timeout to prevent pegging the CPU
msg = q.get(timeout=0.01)
self.handle(msg)
+ changed = True
except Queue.Empty:
pass
+ return changed
def run(self):
if self.server: