fix: glitchtip env to pyhton boolean
This commit is contained in:
parent
071077200b
commit
372c0ed457
@ -1979,8 +1979,8 @@ async function startGlitchTipService(request: FastifyRequest<ServiceStartStop>)
|
||||
EMAIL_PORT: emailSmtpPort,
|
||||
EMAIL_HOST_USER: emailSmtpUser,
|
||||
EMAIL_HOST_PASSWORD: emailSmtpPassword,
|
||||
EMAIL_USE_TLS: emailSmtpUseTls,
|
||||
EMAIL_USE_SSL: emailSmtpUseSsl,
|
||||
EMAIL_USE_TLS: emailSmtpUseTls ? 'True' : 'False',
|
||||
EMAIL_USE_SSL: emailSmtpUseSsl ? 'True' : 'False',
|
||||
EMAIL_BACKEND: emailBackend,
|
||||
MAILGUN_API_KEY: mailgunApiKey,
|
||||
SENDGRID_API_KEY: sendgridApiKey,
|
||||
|
Loading…
x
Reference in New Issue
Block a user