From d6e611c5a2d0acb419b8b40a9a571165c328e21a Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Sun, 29 Jun 2025 01:43:48 -0700 Subject: [PATCH] fex --- apps/dispatch-server/routes/aircraft.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/dispatch-server/routes/aircraft.ts b/apps/dispatch-server/routes/aircraft.ts index 4a1e26ba..032a7bf3 100644 --- a/apps/dispatch-server/routes/aircraft.ts +++ b/apps/dispatch-server/routes/aircraft.ts @@ -1,7 +1,6 @@ import { AdminMessage, getPublicUser, MissionLog, Prisma, prisma } from "@repo/db"; import { Router } from "express"; import { io } from "../index"; -import { aircraftPatches } from "modules/prometheus"; const router: Router = Router(); @@ -91,7 +90,6 @@ router.patch("/:id", async (req, res) => { }, }); } - aircraftPatches.inc(); res.json(updatedConnectedAircraft); // When change is only the estimated logout time, we don't need to emit an event if (Object.keys(aircraftUpdate).length === 1 && aircraftUpdate.esimatedLogoutTime) return;