Skip to content

Commit 5a4e9d7

Browse files
committed
Merge branch 'miso231-patch-1'
2 parents dc3db2d + 89b9c22 commit 5a4e9d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

configuration/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def read_secret(secret_name):
4848
# Redis database settings. The Redis database is used for caching and background processing such as webhooks
4949
REDIS = {
5050
'HOST': os.environ.get('REDIS_HOST', 'localhost'),
51-
'PORT': os.environ.get('REDIS_PORT', 6379),
51+
'PORT': int(os.environ.get('REDIS_PORT', 6379)),
5252
'PASSWORD': os.environ.get('REDIS_PASSWORD', read_secret('redis_password')),
5353
'DATABASE': os.environ.get('REDIS_DATABASE', '0'),
5454
'CACHE_DATABASE': os.environ.get('REDIS_CACHE_DATABASE', '1'),

0 commit comments

Comments
 (0)