Edge Function
The ping Function:
addEventListener('fetch', async (event) => {
console.log('test-ping: Function started.');
event.respondWith(new Response('pong', { status: 200 }));
});
Import map
{
"imports": {}
}
I'm facing a critical issue with my Supabase project (
Problem: All my deployed Edge Functions are consistently timing out with a
Symptoms:
Could someone from the Supabase team or community please look into this? Any guidance or direct assistance would be greatly appreciated as this is blocking core functionality.
Thanks!
addEventListener('fetch', async (event) => {
console.log('test-ping: Function started.');
event.respondWith(new Response('pong', { status: 200 }));
});
Import map
{
"imports": {}
}
I'm facing a critical issue with my Supabase project (
dqrpmooafaqigajeyqkp) and urgently need assistance.Problem: All my deployed Edge Functions are consistently timing out with a
504 Gateway Timeout after approximately 150 seconds. This happens even for the simplest "hello world" style functions.Symptoms:
- Frontend calls to Edge Functions hang and eventually receive a 504.
- Supabase dashboard logs for these functions only show "booted" and "shutdown" messages (
reason: "WallClockTime"). No internalconsole.logstatements are being executed or visible.
- Deployed a minimal
test-pingfunction (just returns "pong" and logs "Function started"). This also times out before logging anything. - Verified GoSMS API credentials via
curl(successful token generation, so external API isn't the issue). - Ensured
import_map.jsonis correctly configured for dependencies. - Sent a support ticket on August 10th but haven't received a response.
Could someone from the Supabase team or community please look into this? Any guidance or direct assistance would be greatly appreciated as this is blocking core functionality.
Thanks!