Skip to content

Commit

Permalink
fix: local tls
Browse files Browse the repository at this point in the history
  • Loading branch information
pr-Mais committed Nov 24, 2023
1 parent 1ca0f2e commit 133b92a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion firestore-send-email/functions/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ async function transportLayer() {
host: "127.0.0.1",
port: 8132,
secure: false,
tls: parseTlsOptions(config.tls),
tls: {
rejectUnauthorized: false,
},
});
}

Expand Down

0 comments on commit 133b92a

Please sign in to comment.