Guilherme Balena Versiani

Results 38 comments of Guilherme Balena Versiani

Circling back here, I'm closing this issue due to inactivity. Please open a new issue if your problem persists.

Closed as no new activity has been registered. Please open a new issue if the problem persists.

Right support to `Event` header is to modify `c_src/header_list.h` so it gets parsed.

Please provide more information to best diagnose the problem. As described in the `README`, `pqueue` relies on atomic operations provided by the filesystem. That means the `info` does not get...

So, when these cases happen, is it possible to collect and provide a sample (without infringing any copyright of your work)? The other question is: how do you know it...

Hello @graingerkid, I will try to reproduce your case. But a possible explanation is that the last entry is repeated because it was not completely processed (it didn't get a...

Try the following: ```python def worker(): while True: try: item = q.get() print item time.sleep(1) # emulate an intensive work here except: pass finally: q.task_done() ``` Then, remove your last...

@graingerkid, I think you already narrowed down the problem. I'm just without time to work on this issue, but I will certainly do a test case for it.