spumer
spumer
I think this should be handled by tests. You can write fixture for pytests which will check return statement in function code... if you want You can write real middleware...
The best practice is place entrypoint near methods and then import entrypoint in app module So, for your case i recommend move Entrypoint to rpc.py and then import rpc.py from...
@klen I started discussion with you via email :) Email taken from github page, i hope it's right
@samuelcolvin you have a conceptual understanding how it should works? For serialization i think the native way is use `__str__` and any user can implement it on their Enum (sub-)classes....
Split across files https://github.com/smagafurov/fastapi-jsonrpc/pull/28#issuecomment-1001257343
Looks like you need restore handlers too, not only level
> Anyone know of any good forks of this repo or should I create one? No. Only alternative project: https://github.com/absperf/asyncinotify/ , but I prefer **aionotify** because of the more user-friendly...
Bug occured when you use 8players version?
Quick fix in our case is use `get_or_create` instead `create_or_update` in `after_enqueue` method ```python def after_enqueue(self, broker, message, delay): from django_dramatiq.models import Task self.logger.debug('Creating Task from message %r.', message.message_id) status...