graingerkid

Results 6 comments of graingerkid

I also get... ``` AttributeError: 'Struct' object has no attribute 'subject' ```

Has support for this project stopped? I am also unable to parse anything

I added a `time.sleep(1)` before the `q.join()` and that seems to have fixed the issue. I guess it's terminated before it's completed the run.

Yea this was my full code (sorry)... ``` def worker(): while True: try: item = q.get() print item except: pass finally: q.task_done() for i in range(3): t = Thread(target=worker) t.daemon...

It seems to work sometimes and then not others. Any ideas how we could narrow down the issue?

FYI i've got the following set... `Queue("/micro_service/queue_data", tempdir="/micro_service/queue_data")`