Merge pull request 'Fix typo' (#14) from fix/jenkinsfile into main

Reviewed-on: #14
This commit is contained in:
2025-12-02 12:24:15 +00: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)
)
],
},
},
}