Drop @sentry/node (Sentry support) - untested and unused

This commit is contained in:
Rory&
2025-09-29 22:08:03 +02:00
parent 3a0bded7f2
commit 0c3d8a792f
14 changed files with 3 additions and 210 deletions
-4
View File
@@ -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();
}