We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cdf509 commit 5f50921Copy full SHA for 5f50921
2 files changed
workspaces/bulk-import/.changeset/three-seals-rhyme.md
@@ -0,0 +1,5 @@
1
+---
2
+'@red-hat-developer-hub/backstage-plugin-bulk-import-backend': patch
3
4
+
5
+Fixes `/imports` endpoint unable to create `catalog-info.yaml` PR in rhdh-local
workspaces/bulk-import/plugins/bulk-import-backend/src/catalog/catalogHttpClient.ts
@@ -250,7 +250,7 @@ export class CatalogHttpClient {
250
} catch (error: any) {
251
if (
252
error.message?.includes('NotFoundError') ||
253
- error.cause?.message?.includes('NotFoundError')
+ error.body?.error?.message?.includes('NotFoundError')
254
) {
255
return false;
256
}
0 commit comments