|
|
|
@ -223,8 +223,7 @@ enum CertTypes {
|
|
|
|
|
key = 'key', |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function generateConfigFix(e: any) { |
|
|
|
|
const errorHandlers = [ |
|
|
|
|
const errorHandlers = [ |
|
|
|
|
{ |
|
|
|
|
messages: ['unable to get local issuer certificate', 'self signed certificate in certificate chain'], |
|
|
|
|
codes: ['UNABLE_TO_GET_ISSUER_CERT_LOCALLY', 'SELF_SIGNED_CERT_IN_CHAIN'], |
|
|
|
@ -254,16 +253,17 @@ function generateConfigFix(e: any) {
|
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
] |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
function generateConfigFix(e: any) { |
|
|
|
|
for (const handler of errorHandlers) { |
|
|
|
|
const errorMessage = e?.response?.data?.msg |
|
|
|
|
const errorCode = e?.response?.data?.sql_code |
|
|
|
|
|
|
|
|
|
if (!errorMessage || !errorCode) return |
|
|
|
|
if (!errorMessage && !errorCode) return |
|
|
|
|
|
|
|
|
|
const messageMatches = handler.messages.some((msg) => errorMessage?.includes?.(msg)) |
|
|
|
|
const codeMatches = handler.codes.includes(errorCode) |
|
|
|
|
const messageMatches = errorMessage && handler.messages.some((msg) => errorMessage?.includes?.(msg)) |
|
|
|
|
const codeMatches = errorCode && handler.codes.includes(errorCode) |
|
|
|
|
|
|
|
|
|
if (messageMatches || codeMatches) { |
|
|
|
|
return handler.action |
|
|
|
|