© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•3y ago•
7 replies
phil

Realtime listener doesnt seem to get anything

I have this table called
testing
testing
with realtime enabled and no RLS.

I created a listener like this:

supabase
      .channel(`rxdb-supabase-https://my-instance.supabase.co`)
      .on('postgres_changes', { event: '*', schema: 'public', table: 'testing' }, (payload) => {
        console.log('testing', payload);
      })
      .subscribe();
supabase
      .channel(`rxdb-supabase-https://my-instance.supabase.co`)
      .on('postgres_changes', { event: '*', schema: 'public', table: 'testing' }, (payload) => {
        console.log('testing', payload);
      })
      .subscribe();


Now when I add an entry to that table, I do not see any console logs. Any ideas?

Other tables I listen to do however work. Some tables work some dont and iv no idea why
image.png
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Realtime listener instability
SupabaseSSupabase / help-and-questions
7mo ago
`emailRedirectTo` doesnt seem to work:
SupabaseSSupabase / help-and-questions
4mo ago
Supabase Realtime where to get REALTIME_URL?
SupabaseSSupabase / help-and-questions
4y ago
Realtime GET erro 401
SupabaseSSupabase / help-and-questions
6d ago