From ac34983306847b9824e2b9c9167544e34b79b987 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Tue, 7 Nov 2023 11:29:37 -0800 Subject: [PATCH] Add missing import after git stupidity --- plugin-server/src/worker/ingestion/process-event.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin-server/src/worker/ingestion/process-event.ts b/plugin-server/src/worker/ingestion/process-event.ts index 8ca1ea76988dd..b85f13dd6e53a 100644 --- a/plugin-server/src/worker/ingestion/process-event.ts +++ b/plugin-server/src/worker/ingestion/process-event.ts @@ -34,6 +34,7 @@ import { addGroupProperties } from './groups' import { upsertGroup } from './properties-updater' import { PropertyDefinitionsManager } from './property-definitions-manager' import { TeamManager } from './team-manager' +import { captureIngestionWarning } from './utils' export class EventsProcessor { pluginsServer: Hub