From 4af4b0c02f4d5e74d99d0a0f43dde203b9e95e99 Mon Sep 17 00:00:00 2001 From: muhammadvadud Date: Tue, 2 Dec 2025 17:23:13 +0500 Subject: [PATCH] Fix typo --- config/conf/channels.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/config/conf/channels.py b/config/conf/channels.py index fdf0774..05e7c95 100644 --- a/config/conf/channels.py +++ b/config/conf/channels.py @@ -5,8 +5,12 @@ CHANNEL_LAYERS = { "default": { "BACKEND": "channels_redis.core.RedisChannelLayer", "CONFIG": { - "hosts": [(env.str("REDIS_HOST", "redis"), env.int("REDIS_PORT", 6379))], + "hosts": [ + ( + env.str("REDIS_HOST", "redis"), + env.int("REDIS_PORT_6379_TCP_PORT", 6379) + ) + ], }, }, } -