Enabling exposure of Queues via PostgREST is temporarily disabled #32969
-
How can I restore(using brew) the functionality of 'Expose Queues via PostgREST'? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
It was purposely turned off because it was broken and generating lots of issues. |
Beta Was this translation helpful? Give feedback.
-
At least in https://github.com/supabase/cli/releases/tag/v2.12.0 , queue access via postgREST is functional for me in the local UI now. But I'm getting a new error when trying to access the queue programmatically in local: const { data, error } = await supabase.schema("pgmq_public").rpc("send", {
queue_name: "q_image_generations",
message: { hello: "world" },
});
console.log("Error: ", error); Prints the following error: Error: {
code: 'PGRST106',
details: null,
hint: null,
message: 'The schema must be one of the following: public, graphql_public'
} Anyone else still having local queue access issues? |
Beta Was this translation helpful? Give feedback.
-
I can confirm. Fixed in. https://github.com/supabase/cli/releases/tag/v2.12.0 |
Beta Was this translation helpful? Give feedback.
It was purposely turned off because it was broken and generating lots of issues.
Looks like it is being turned back on: #32753
But that has to make it thru the release cycle for the CLI.