fix: Ignore coolify proxy error for now
This commit is contained in:
parent
986c5b7133
commit
19f661706d
1 changed files with 3 additions and 1 deletions
|
|
@ -46,7 +46,9 @@ export function ErrorHandler(e) {
|
|||
if (e.message?.includes('git clone')) {
|
||||
truncatedError.message = 'git clone failed';
|
||||
}
|
||||
sentry.captureException(truncatedError);
|
||||
if (!e.message?.includes('Coolify Proxy is not running')) {
|
||||
sentry.captureException(truncatedError);
|
||||
}
|
||||
const payload = {
|
||||
status: truncatedError.status || 500,
|
||||
body: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue