mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Use yaml escaping in the cert file
This commit is contained in:
parent
a36a516f04
commit
4ecb47f80f
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ const run = async () => {
|
|||
if (secrets.REDIS_URL?.startsWith('rediss://') && secrets.REDIS_CERT) {
|
||||
return {
|
||||
tls: {
|
||||
cert: secrets.REDIS_CERT?.replace(/\\n/g, '\n'),
|
||||
cert: secrets.REDIS_CERT,
|
||||
rejectUnauthorized: false,
|
||||
},
|
||||
maxRetriesPerRequest: null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue