summaryrefslogtreecommitdiff
path: root/src/buildstream/_frontend/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_frontend/app.py')
-rw-r--r--src/buildstream/_frontend/app.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildstream/_frontend/app.py b/src/buildstream/_frontend/app.py
index 90070af48..7fd10b4b6 100644
--- a/src/buildstream/_frontend/app.py
+++ b/src/buildstream/_frontend/app.py
@@ -570,8 +570,9 @@ class App():
if not self.stream.terminated:
if element_job:
# look-up queue
+ # Issue with pickling a queue object, so for now only pass action names
for q in self.stream.queues:
- if q.action_name == action_name:
+ if q == action_name:
queue = q
assert queue, "Job action {} does not have a corresponding queue".format(action_name)