Merge pull request #29006 from leboncoin/fix-catalog-builder-pass-config

fix(catalog-backend): make catalog.useUrlReadersSearch actually work in 1.36
This commit is contained in:
Patrik Oldsberg
2025-03-04 16:35:20 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Correctly use the `catalog.useUrlReadersSearch` config.
@@ -379,7 +379,7 @@ export class CatalogBuilder {
return [
new FileReaderProcessor(),
new UrlReaderProcessor({ reader, logger }),
new UrlReaderProcessor({ reader, logger, config }),
CodeOwnersProcessor.fromConfig(config, { logger, reader }),
new AnnotateLocationEntityProcessor({ integrations }),
];