Not Found "/lobby/" django-channels routing error

2018-04-04 Thread Mike Johnson Jr
*routing.py* *from channels import include, route* *from chat import consumers* *from . import game_consumers* *channel_routing = [* * #game routing* * route('websocket.connect', game_consumers.ws_connect_lobby, path=r"^/lobby/$"),* *route('websocket.receive', gam

Re: Not Found "/lobby/" django-channels routing error

2018-04-04 Thread Adam Johnson
This mailing list is for the development of Django itself, not for support. Use the django-users mailing list for that, or IRC #django on freenode, or a site like Stack Overflow. On 4 April 2018 at 03:19, Mike Johnson Jr wrote: > *routing.py* > > *from channels import include, route* > *

SafeExceptionReporterFilter should obfuscate all variables in every stack frame below a function decorated with sensitive_variables

2018-04-04 Thread ncvc via Django developers (Contributions to Django itself)
SafeExceptionReporterFilter obfuscates variables in the function decorated with sensitive_variables, but it does not obfuscate variables lower in the call stack, which could result in sensitive data being leaked in exception reports. For instance: @sensitive_variables('sensitive') def decorate