mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
chore(editor): Stop reporting ResponseError: Unauthorized
error to Sentry (no-changelog) (#11744)
Some checks failed
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Has been cancelled
Some checks failed
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Has been cancelled
This commit is contained in:
parent
f1ca8c128b
commit
bd924c7194
|
@ -7,6 +7,7 @@ const ignoredErrors = [
|
||||||
{ instanceof: AxiosError },
|
{ instanceof: AxiosError },
|
||||||
{ instanceof: ResponseError, message: /ECONNREFUSED/ },
|
{ instanceof: ResponseError, message: /ECONNREFUSED/ },
|
||||||
{ instanceof: ResponseError, message: "Can't connect to n8n." },
|
{ instanceof: ResponseError, message: "Can't connect to n8n." },
|
||||||
|
{ instanceof: ResponseError, message: 'Unauthorized' },
|
||||||
{ instanceof: Error, message: /ResizeObserver/ },
|
{ instanceof: Error, message: /ResizeObserver/ },
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue