Ignore empty SENTRY_DSN

This commit is contained in:
dangered wolf 2022-09-03 01:49:19 -04:00
parent e1aa776598
commit a1d14c7c69
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -348,7 +348,7 @@ export const cacheWrapper = async (
const sentryWrapper = async (event: FetchEvent, test = false): Promise<void> => {
let sentry: null | Toucan = null;
if (typeof SENTRY_DSN !== 'undefined' && !test) {
if (typeof SENTRY_DSN !== 'undefined' && SENTRY_DSN && !test) {
/* We use Toucan for Sentry. Toucan is a Sentry SDK designed for Cloudflare Workers / DOs */
sentry = new Toucan({
dsn: SENTRY_DSN,