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 (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 internal console.log statements are being executed or visible.
Troubleshooting I've done:
  • Deployed a minimal test-ping function (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.json is correctly configured for dependencies.
  • Sent a support ticket on August 10th but haven't received a response.
I have no idea what am I doing wrong

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!
Was this page helpful?