Thomas Matecki
Thomas Matecki
I think this issue should be reopened as it appears to still occur(new failing test): https://github.com/rq/rq/blob/9bef2aa5a49d894bd03bd772b670e207f8edd0ef/tests/test_queue.py#L530 I agree with @jtfidje that this is not related multiple dependencies, though a few...
I think the behavior of `enqueue_job` is at issue here. It is counterintuitive that `enqueue_job` would not respect a job's dependencies while `enqueue` and `enqueue_call` do. We could document this,...
You could probably implement a [`Queue`](https://python-rq.org/docs/workers/#worker-arguments) class that does this. The normal queue is implemented using Redis' `RPUSH` and `LPOP` commands. There is no Redis command to _either insert or...
Members of my team have encountered this, and I think a reinstall of the project virtual environment did the trick. Anyone else have a similar experience?
@k0t3n https://turtlemonvh.github.io/python-multiprocessing-and-corefoundation-libraries.html Perhap upgrading your python version will do the trick? (https://bugs.python.org/issue8713)
Only when using the decorator? `Queue#enqueue` works fine?
I'm experiencing the same. ``` Command failed: bazel --output_base=/tmp/eab0d61a99b6696edb3d2aff87b585e8 query ...:* --output=package Loading: 0 packages loaded DEBUG: /tmp/eab0d61a99b6696edb3d2aff87b585e8/external/build_bazel_rules_nodejs/index.bzl:65:14: node_repository attribute not set and no repository named 'nodejs_toolchains' exists; installing default...
I'm running into the same issue with an (oddly) almost identical setup as @NoahRJohnson. Just to make sure I understand, the crux of the issue seems to be that `pipenv...
I believe I am having a similar issue, but it occurs for "simple" return types. This appears to be correctly highlighted: ... then with a return type annotation, highlight does...
I haven't dug too far into the weeds on this, but the after disabling the [Python for VS Code](https://marketplace.visualstudio.com/items?itemName=tht13.python) extension, the issue is gone for me. It is not obvious...