Merge pull request #23658 from knottAutodesk/patch-3

Update external-integrations.md
This commit is contained in:
Fredrik Adelöw
2024-03-19 15:49:35 +01:00
committed by GitHub
@@ -679,9 +679,10 @@ export class SystemXReaderProcessor implements CatalogProcessor {
if (error.name === 'NotModifiedError' && cacheItem) {
// The ETag matches and we have a cached value from the previous run.
emit(processingResult.entity(location, cacheItem.entity));
} else {
const message = `Unable to read ${location.type}, ${error}`;
emit(processingResult.generalError(location, message));
}
const message = `Unable to read ${location.type}, ${error}`;
emit(processingResult.generalError(location, message));
}
return true;