refactor(Airtable Node): Prevent reporting to Sentry failure to find table (no-changelog) (#7521)

https://n8nio.sentry.io/issues/4356342982/?project=4503924908883968&query=is%3Aunresolved&referrer=issue-stream&statsPeriod=14d&stream_index=8
This commit is contained in:
Iván Ovejero
2023-10-26 12:02:23 +02:00
committed by GitHub
parent d885daa6a1
commit a277807404
3 changed files with 12 additions and 4 deletions

View File

@@ -118,7 +118,9 @@ export async function viewSearch(
});
if (!tableData) {
throw new NodeOperationError(this.getNode(), 'Table information could not be found!');
throw new NodeOperationError(this.getNode(), 'Table information could not be found!', {
severity: 'warning',
});
}
if (filter) {