summary refs log tree commit diff
path: root/src/cdn
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-09-29 21:28:06 +0200
committerRory& <root@rory.gay>2025-09-29 22:08:03 +0200
commit0c3d8a792f9f17f2f28ad449cd8bc5c2a381c8d5 (patch)
treec3496223456f3af11f5ce322d36619c22f961cb1 /src/cdn
parentUpdate file-type (diff)
downloadserver-ts-0c3d8a792f9f17f2f28ad449cd8bc5c2a381c8d5.tar.xz
Drop @sentry/node (Sentry support) - untested and unused
Diffstat (limited to 'src/cdn')
-rw-r--r--src/cdn/Server.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cdn/Server.ts b/src/cdn/Server.ts

index 287b29500..062ae19e0 100644 --- a/src/cdn/Server.ts +++ b/src/cdn/Server.ts
@@ -22,7 +22,6 @@ import { Config, initDatabase, registerRoutes, - Sentry, } from "@spacebar/util"; import { CORS, BodyParser } from "@spacebar/api"; import path from "path"; @@ -45,7 +44,6 @@ export class CDNServer extends Server { await initDatabase(); await Config.init(); await this.cleanupSignaturesInDb(); - await Sentry.init(this.app); const logRequests = process.env["LOG_REQUESTS"] != undefined; if (logRequests) { @@ -123,8 +121,6 @@ export class CDNServer extends Server { ); this.log("verbose", "[Server] Route /guilds/banners registered"); - Sentry.errorHandler(this.app); - return super.start(); }