From 09aa2b14495774b78ad475fd87bcce9ac0f9121a Mon Sep 17 00:00:00 2001 From: blam Date: Mon, 14 Oct 2024 12:02:29 +0200 Subject: [PATCH] chore: fix extra config docs Signed-off-by: blam Signed-off-by: blam --- plugins/catalog-backend/config.d.ts | 14 -------------- .../catalog-backend/src/service/CatalogPlugin.ts | 1 - 2 files changed, 15 deletions(-) diff --git a/plugins/catalog-backend/config.d.ts b/plugins/catalog-backend/config.d.ts index 2f8ec3f230..1ab107ef10 100644 --- a/plugins/catalog-backend/config.d.ts +++ b/plugins/catalog-backend/config.d.ts @@ -192,19 +192,5 @@ export interface Config { * housing catalog-info files. */ processingInterval?: HumanDuration | false; - /** - * If the processing engine should be started or not, defaults to true. - * @remarks - * - * Example: - * - * ```yaml - * catalog: - * processingInterval: false - * ``` - * - * This will enable or disable the processing of entities in the Catalog. This can be useful - * to use with Read Replica deployments of the catalog. - */ }; } diff --git a/plugins/catalog-backend/src/service/CatalogPlugin.ts b/plugins/catalog-backend/src/service/CatalogPlugin.ts index 98c99e38dc..dfe415afa6 100644 --- a/plugins/catalog-backend/src/service/CatalogPlugin.ts +++ b/plugins/catalog-backend/src/service/CatalogPlugin.ts @@ -42,7 +42,6 @@ import { import { merge } from 'lodash'; import { Permission } from '@backstage/plugin-permission-common'; import { ForwardedError } from '@backstage/errors'; -import { constrainedMemory } from 'node:process'; class CatalogLocationsExtensionPointImpl implements CatalogLocationsExtensionPoint