|
relating code in consumers.py: OS =Windows 7-64bit pip-freeze: full Traceback: daphne.server - ERROR - Exception inside application: call() missing 1 required positional argument: 'send' |
Replies: 3 comments 6 replies
|
Likely you missed the |
|
my consumer.py my aggi.py i am also got same error i have not router.py, i wrote my ws pattern in asgi, how to solve |
|
Try changing |
Try changing
path(conf["intranet"]["address"].split("/")[3]+"/", Trade)to
path(conf["intranet"]["address"].split("/")[3]+"/", Trade.as_asgi())As nstadelmaier-dev suggested.