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