Fix typo #14

Merged
admin merged 2 commits from fix/jenkinsfile into main 2025-12-02 12:24:16 +00:00
Showing only changes of commit 4af4b0c02f - Show all commits

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