Compare commits

...

3 Commits

Author SHA1 Message Date
d38d2cd800 Merge pull request 'Fix typo' (#14) from fix/jenkinsfile into main
Reviewed-on: #14
2025-12-02 12:24:15 +00:00
6204a57f86 Merge branch 'main' into fix/jenkinsfile 2025-12-02 12:23:38 +00:00
4af4b0c02f Fix typo 2025-12-02 17:23:13 +05:00

View File

@@ -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)
)
],
},
},
}