Update external-integrations.md

It's not an error if we have a cache hit.

Signed-off-by: knottAutodesk <143034967+knottAutodesk@users.noreply.github.com>
This commit is contained in:
knottAutodesk
2024-03-17 10:27:48 -07:00
committed by GitHub
parent 11dd2c6816
commit 01619dee22
@@ -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;