diff --git a/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts b/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts index 44c8a74cc4..9924f75b9d 100644 --- a/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts +++ b/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts @@ -315,8 +315,6 @@ it.each(databases.eachSupportedId())( describe.each(databases.eachSupportedId())( 'performStitching edge cases, %p', databaseId => { - const logger = mockServices.logger.mock(); - it('stitches when final_entities row already exists', async () => { const knex = await databases.init(databaseId); await applyDatabaseMigrations(knex); diff --git a/plugins/catalog-backend/src/database/operations/stitcher/performStitching.ts b/plugins/catalog-backend/src/database/operations/stitcher/performStitching.ts index 6929d3ca62..aa5572f4e6 100644 --- a/plugins/catalog-backend/src/database/operations/stitcher/performStitching.ts +++ b/plugins/catalog-backend/src/database/operations/stitcher/performStitching.ts @@ -26,11 +26,7 @@ import { SerializedError } from '@backstage/errors'; import { Knex } from 'knex'; import { createHash } from 'node:crypto'; import stableStringify from 'fast-json-stable-stringify'; -import { - DbFinalEntitiesRow, - DbRefreshStateRow, - DbStitchQueueRow, -} from '../../tables'; +import { DbFinalEntitiesRow, DbStitchQueueRow } from '../../tables'; import { buildEntitySearch } from './buildEntitySearch'; import { markDeferredStitchCompleted } from './markDeferredStitchCompleted'; import { syncSearchRows } from './syncSearchRows';