2
0

Fix: 'mail.enable-replies' type

Excpetion: 'mail.enable-replies': got <type 'str'>, expected boolean
This commit is contained in:
Jens Willmer 2019-05-07 09:48:38 +02:00 committed by Matt Robenolt
parent 259bc29e78
commit ba82e9ffc4

View File

@ -281,7 +281,7 @@ ENV_CONFIG_MAPPING = {
'SENTRY_EMAIL_USE_TLS': ('mail.use-tls', Bool),
'SENTRY_EMAIL_HOST': 'mail.host',
'SENTRY_SERVER_EMAIL': 'mail.from',
'SENTRY_ENABLE_EMAIL_REPLIES': 'mail.enable-replies',
'SENTRY_ENABLE_EMAIL_REPLIES': ('mail.enable-replies', Bool),
'SENTRY_SMTP_HOSTNAME': 'mail.reply-hostname',
'SENTRY_SECRET_KEY': 'system.secret-key',