Realtime updates not being sent in specific project #9340
-
|
After following the instructions provided in https://supabase.com/docs/guides/api#realtime-api, having that not work, trying some suggestions in this discussion (#428), and even making the (questionable) decision to run this SQL query in the SQL editor, I am able to establish a websocket connection which doesn't immediately close, but I do not receive any websocket messages regarding database updates. The code I'm running (using the Supabase JS library): const subscription = supabase
.from('*')
.on("*", (payload) => { console.log(payload) })
.subscribe((status) => { console.log("Subscription status: ", status) });
console.log(subscription);And most notably based on some comments from Discussion #428, here's the output when I run I made a new project and was able to successfully get Realtime updates working with the exact same code, so I'm fairly sure it's not my code. My question is, how can I remedy the issue with my current project so that I don't have to migrate all my data to a new project? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Please contact support. There were a couple of issues over the past 2 weeks with certain projects and upgrading to the new realtime servers. |
Beta Was this translation helpful? Give feedback.



Please contact support. There were a couple of issues over the past 2 weeks with certain projects and upgrading to the new realtime servers.