Jason Russell
Jason Russell
Hey all :) I am the author of [ConveyorMQ](https://github.com/conveyor-mq/conveyor-mq) which I have built with the intention of it being a fast, robust and reliable distributed task queue for Node using...
Hey @hughsw, I've noticed that you have been quite active on the bee-queue repo and I thought you might find my project, [ConveyorMQ](https://github.com/conveyor-mq/conveyor-mq) interesting. I am the author of [ConveyorMQ](https://github.com/conveyor-mq/conveyor-mq)...
[Conveyor MQ](https://github.com/conveyor-mq/conveyor-mq) has a feature for being notified once a task is compelte/finished by using [`onTaskComplete`](https://github.com/conveyor-mq/conveyor-mq#manageronTaskComplete): ```js const task = await manager.enqueueTask({ data: { x: 1, y: 2 } });...
Hi :) What is the status of this PR? It would be nice to have this Knox compatibility merged in. I am available to help with anything if need be...
I'm having the same issue. I think it's got to do with the stream trying to read and write to the database simultaneously using the same transaction & process, which...
Some more info: What I now think is happening is that, for large data sets that exceed the high-water-mark of the Node.js stream, the postgres transaction’s cursor is waiting in...
I am having the same problem. Any updates?
@georoot @Akay7 I am having the same issue. Authenticating with email + password with `ACCOUNT_AUTHENTICATION_METHOD = 'email'` results in: ``` { "non_field_errors": [ "Unable to log in with provided credentials."...
Solved https://github.com/Tivix/django-rest-auth/issues/159#issuecomment-302893368 by adding ``` AUTHENTICATION_BACKENDS = ( # `allauth` specific authentication methods, such as login by e-mail 'allauth.account.auth_backends.AuthenticationBackend', ) ``` to settings.py
These are great suggestions, thank you! I will consider these suggestions for future releases.