Hi everyone, I am currently running v13.5.5-canary.7 and all server side GET requests running in standalone behind an https load balancer results in the following error:
export const GET = async (req: Request) => {
...
return new Response(res, {
status: 200,
headers: {
'content-type': 'application/xml',
'cache-control': 's-maxage=31556952',
},
});
}
TypeError: fetch failed at Object.fetch (node:internal/deps/undici/undici:13220:11)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
cause: [Error: 185CCA705E3E0000:error:0A00010B:SSL routines:ssl3_get_record:wrong version number:../deps/openssl/openssl/ssl/record/ssl3_record.c:354:]
{
library: 'SSL routines',
reason: 'wrong version number',
code: 'ERR_SSL_WRONG_VERSION_NUMBER'
}
I had previously seen this same error with next/images however that was resolved in a v13.5.x build. Is anyone else facing this issue?