Fixed #20: Bad routing setup for default backend

This commit is contained in:
Andrew Godwin 2015-11-07 05:02:03 -08:00
parent dae0b257d6
commit b6714c8a65

View File

@ -8,6 +8,7 @@ channel_backends = BackendManager(
getattr(settings, "CHANNEL_BACKENDS", {
DEFAULT_CHANNEL_BACKEND: {
"BACKEND": "channels.backends.memory.InMemoryChannelBackend",
"ROUTING": {},
}
})
)