fix: pipeline
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 8s
Build & Deploy / 🧪 QA (push) Successful in 1m24s
Build & Deploy / 🏗️ Build (push) Successful in 3m49s
Build & Deploy / 🚀 Deploy (push) Successful in 31s
Build & Deploy / 🧪 Smoke Test (push) Failing after 53s
Build & Deploy / 🔔 Notify (push) Successful in 2s
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 8s
Build & Deploy / 🧪 QA (push) Successful in 1m24s
Build & Deploy / 🏗️ Build (push) Successful in 3m49s
Build & Deploy / 🚀 Deploy (push) Successful in 31s
Build & Deploy / 🧪 Smoke Test (push) Failing after 53s
Build & Deploy / 🔔 Notify (push) Successful in 2s
This commit is contained in:
@@ -9,11 +9,9 @@ export default getRequestConfig(async ({ requestLocale }) => {
|
|||||||
const locale =
|
const locale =
|
||||||
typeof rawLocale === 'string' && supportedLocales.includes(rawLocale) ? rawLocale : 'en';
|
typeof rawLocale === 'string' && supportedLocales.includes(rawLocale) ? rawLocale : 'en';
|
||||||
|
|
||||||
// Log to Sentry if we had to fallback, as it might indicate a routing issue
|
// Silent fallback for missing locales to support internal requests (e.g. OG generation)
|
||||||
if (!rawLocale || !supportedLocales.includes(rawLocale as string)) {
|
if (!rawLocale || !supportedLocales.includes(rawLocale as string)) {
|
||||||
console.warn(
|
// console.debug(`[i18n] Fallback to "en" for locale: "${rawLocale}"`);
|
||||||
`[i18n] Invalid or missing requestLocale received: "${rawLocale}". Falling back to "en".`,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -30,8 +30,9 @@ async function verifyImage(path: string): Promise<boolean> {
|
|||||||
if (!contentType?.includes('image/png')) {
|
if (!contentType?.includes('image/png')) {
|
||||||
const body = await response.text();
|
const body = await response.text();
|
||||||
console.log(` Headers: ${JSON.stringify(Object.fromEntries(response.headers))}`);
|
console.log(` Headers: ${JSON.stringify(Object.fromEntries(response.headers))}`);
|
||||||
|
console.log(` Status Text: ${response.statusText}`);
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Content-Type: ${contentType}. Body preview: ${body.substring(0, 500).replace(/\n/g, ' ')}...`,
|
`Status: ${response.status}. Content-Type: ${contentType}. Body preview: ${body.substring(0, 1000).replace(/\n/g, ' ')}...`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user