Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supabase Realtime Subscript Fails With Undefined Error (Possibly: Auth error: tenant 'realtime-dev' not found #746

Closed
2 tasks done
ghost opened this issue Nov 20, 2023 · 15 comments
Labels
bug Something isn't working

Comments

@ghost
Copy link

ghost commented Nov 20, 2023

Bug report

  • I confirm this is a bug with Supabase, not with my own application.
  • I confirm I have searched the Docs, GitHub Discussions, and Discord.

Describe the bug

On the latest Supabase CLI (1.112.0) with the latest Supabase.js (2.38.4) (albeit, which is not using the latest realtime, since the latest CLI is only using public.ecr.aws/supabase/realtime:v2.25.27, but a PR is already there to bump this) when attempting to create a realtime subscription, I get the following error:

Screenshot 2023-11-19 at 7 14 18 PM

Sample Code

// note: subscriptionID is just a random, `v4()` from the `uuid` npm package
const subscription = supabase
        .channel(subscriptionID)
        .on("postgres_changes", {
            event: "*",
            schema: "public",
            table: "users",
            filter: `id=eq.${user.id}`,
          },
          async () => await realtimeCallback())
        .subscribe((status, err) => handleLog({
          status, err
        }));

Detailed Logs

Subscription Error Logs

These logs appear as soon as I attempt to create a realtime subscription (omitting the startup logs in the next section):

2023-11-19 19:12:12 00:12:12.851 [warning] Replica region not found, defaulting to Realtime.Repo
2023-11-19 19:12:12 00:12:12.854 [debug] QUERY OK source="tenants" db=0.7ms queue=1.1ms idle=1308.1ms
2023-11-19 19:12:12 SELECT t0."id", t0."name", t0."external_id", t0."jwt_secret", t0."postgres_cdc_default", t0."max_concurrent_users", t0."max_events_per_second", t0."max_bytes_per_second", t0."max_channels_per_client", t0."max_joins_per_second", t0."suspend", t0."inserted_at", t0."updated_at" FROM "tenants" AS t0 WHERE (t0."external_id" = $1) ["realtime-dev"]
2023-11-19 19:12:12 00:12:12.854 project=realtime-dev external_id=realtime-dev [error] Auth error: tenant `realtime-dev` not found
2023-11-19 19:12:13 00:12:13.862 project=realtime-dev external_id=realtime-dev [error] Auth error: tenant `realtime-dev` not found
2023-11-19 19:12:14 00:12:14.871 project=realtime-dev external_id=realtime-dev [error] Auth error: tenant `realtime-dev` not found
2023-11-19 19:12:15 00:12:15.883 project=realtime-dev external_id=realtime-dev [error] Auth error: tenant `realtime-dev` not found

Start-up Logs

These are the logs before attempting to create a realtime subscription (I'll omit these in the previous section of logs for brevity):

2023-11-19 19:06:31 00:06:31.400 [info] Migrations already up
2023-11-19 19:06:31 00:06:31.951 [debug] QUERY OK db=1.5ms queue=120.6ms idle=0.0ms
2023-11-19 19:06:31 begin []
2023-11-19 19:06:31 00:06:31.987 [debug] QUERY OK source="tenants" db=8.0ms
2023-11-19 19:06:31 SELECT t0."id", t0."name", t0."external_id", t0."jwt_secret", t0."postgres_cdc_default", t0."max_concurrent_users", t0."max_events_per_second", t0."max_bytes_per_second", t0."max_channels_per_client", t0."max_joins_per_second", t0."suspend", t0."inserted_at", t0."updated_at" FROM "tenants" AS t0 WHERE (t0."external_id" = $1) ["realtime-dev-tenant"]
2023-11-19 19:06:32 00:06:32.009 [debug] QUERY OK source="extensions" db=0.9ms
2023-11-19 19:06:32 DELETE FROM "extensions" AS e0 WHERE (e0."tenant_external_id" = $1) ["realtime-dev-tenant"]
2023-11-19 19:06:32 00:06:32.011 [debug] QUERY OK db=0.4ms
2023-11-19 19:06:32 DELETE FROM "tenants" WHERE "id" = $1 [<<54, 209, 49, 175, 43, 250, 64, 46, 133, 27, 16, 111, 45, 177, 27, 149>>]
2023-11-19 19:06:32 00:06:32.025 [debug] QUERY OK db=0.2ms
2023-11-19 19:06:32 INSERT INTO "tenants" ("external_id","jwt_secret","max_bytes_per_second","max_channels_per_client","max_concurrent_users","max_events_per_second","max_joins_per_second","name","suspend","inserted_at","updated_at","id") VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12) ["realtime-dev-tenant", "iNjicxc4+llvc9wovDvqymwfnj9teWMlyOIbJ8Fh6j2WNU8CIJ2ZgjR6MUIKqSmeDmvpsKLsZ9jgXJmQPpwL8w==", 100000, 100, 200, 100, 100, "realtime-dev-tenant", false, ~N[2023-11-20 00:06:32], ~N[2023-11-20 00:06:32], <<67, 92, 208, 132, 244, 191, 64, 183, 156, 75, 126, 149, 221, 211, 255, 167>>]
2023-11-19 19:06:32 00:06:32.031 [debug] QUERY OK db=4.7ms
2023-11-19 19:06:32 INSERT INTO "extensions" ("settings","tenant_external_id","type","inserted_at","updated_at","id") VALUES ($1,$2,$3,$4,$5,$6) [%{"db_host" => "WduM1JTp+Ah9s/HVBIpbqg==", "db_name" => "sWBpZNdjggEPTQVlI52Zfw==", "db_password" => "sWBpZNdjggEPTQVlI52Zfw==", "db_port" => "+enMDFi1J/3IrrquHHwUmA==", "db_user" => "sWBpZNdjggEPTQVlI52Zfw==", "ip_version" => 4, "poll_interval_ms" => 100, "poll_max_changes" => 100, "poll_max_record_bytes" => 1048576, "publication" => "supabase_realtime", "region" => "us-east-1", "slot_name" => "supabase_realtime_replication_slot"}, "realtime-dev-tenant", "postgres_cdc_rls", ~N[2023-11-20 00:06:32], ~N[2023-11-20 00:06:32], <<144, 72, 61, 67, 242, 123, 67, 26, 155, 233, 101, 224, 169, 201, 135, 109>>]
2023-11-19 19:06:32 00:06:32.031 [debug] QUERY OK db=0.7ms
2023-11-19 19:06:32 commit []
2023-11-19 19:06:32 00:06:32.032 [debug] QUERY OK db=0.1ms idle=87.5ms
2023-11-19 19:06:32 begin []
2023-11-19 19:06:32 00:06:32.034 [debug] QUERY OK db=1.9ms
2023-11-19 19:06:32 drop publication if exists supabase_realtime []
2023-11-19 19:06:32 00:06:32.035 [debug] QUERY OK db=0.8ms
2023-11-19 19:06:32 drop table if exists public.test_tenant; []
2023-11-19 19:06:32 00:06:32.044 [debug] QUERY OK db=8.0ms
2023-11-19 19:06:32 create table public.test_tenant (
2023-11-19 19:06:32         id SERIAL PRIMARY KEY,
2023-11-19 19:06:32         details text
2023-11-19 19:06:32         ); []
2023-11-19 19:06:32 00:06:32.044 [debug] QUERY OK db=0.1ms
2023-11-19 19:06:32 grant all on table public.test_tenant to anon; []
2023-11-19 19:06:32 00:06:32.044 [debug] QUERY OK db=0.0ms
2023-11-19 19:06:32 grant all on table public.test_tenant to postgres; []
2023-11-19 19:06:32 00:06:32.044 [debug] QUERY OK db=0.0ms
2023-11-19 19:06:32 grant all on table public.test_tenant to authenticated; []
2023-11-19 19:06:32 00:06:32.044 [debug] QUERY OK db=0.1ms
2023-11-19 19:06:32 create publication supabase_realtime for table public.test_tenant []
2023-11-19 19:06:32 00:06:32.046 [debug] QUERY OK db=1.8ms
2023-11-19 19:06:32 commit []
2023-11-19 19:06:33 00:06:33.155 [notice]     :alarm_handler: {:set, {:system_memory_high_watermark, []}}
2023-11-19 19:06:33 00:06:33.199 [info] Elixir.Realtime.SignalHandler is being initialized...
2023-11-19 19:06:33 00:06:33.199 [notice] SYN[realtime@127.0.0.1] Adding node to scope <Elixir.Realtime.Tenants.Connect>
2023-11-19 19:06:33 00:06:33.199 [notice] SYN[realtime@127.0.0.1] Creating tables for scope <Elixir.Realtime.Tenants.Connect>
2023-11-19 19:06:33 00:06:33.199 [notice] SYN[realtime@127.0.0.1|registry<Elixir.Realtime.Tenants.Connect>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.199 [notice] SYN[realtime@127.0.0.1|pg<Elixir.Realtime.Tenants.Connect>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.199 [notice] SYN[realtime@127.0.0.1] Adding node to scope <users>
2023-11-19 19:06:33 00:06:33.200 [notice] SYN[realtime@127.0.0.1] Creating tables for scope <users>
2023-11-19 19:06:33 00:06:33.200 [notice] SYN[realtime@127.0.0.1|registry<users>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.200 [notice] SYN[realtime@127.0.0.1|pg<users>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.200 [notice] SYN[realtime@127.0.0.1] Adding node to scope <Elixir.RegionNodes>
2023-11-19 19:06:33 00:06:33.200 [notice] SYN[realtime@127.0.0.1] Creating tables for scope <Elixir.RegionNodes>
2023-11-19 19:06:33 00:06:33.200 [notice] SYN[realtime@127.0.0.1|registry<Elixir.RegionNodes>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.200 [notice] SYN[realtime@127.0.0.1|pg<Elixir.RegionNodes>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.200 [warning] Replica region not found, defaulting to Realtime.Repo
2023-11-19 19:06:33 00:06:33.213 [info] Running RealtimeWeb.Endpoint with cowboy 2.10.0 at :::4000 (http)
2023-11-19 19:06:33 00:06:33.213 [info] Access RealtimeWeb.Endpoint at http://realtime.fly.dev
2023-11-19 19:06:33 00:06:33.214 [notice] SYN[realtime@127.0.0.1] Adding node to scope <Elixir.PostgresCdcStream>
2023-11-19 19:06:33 00:06:33.214 [notice] SYN[realtime@127.0.0.1] Creating tables for scope <Elixir.PostgresCdcStream>
2023-11-19 19:06:33 00:06:33.214 [notice] SYN[realtime@127.0.0.1|registry<Elixir.PostgresCdcStream>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.214 [notice] SYN[realtime@127.0.0.1|pg<Elixir.PostgresCdcStream>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.217 [notice] SYN[realtime@127.0.0.1] Adding node to scope <Elixir.Extensions.PostgresCdcRls>
2023-11-19 19:06:33 00:06:33.217 [notice] SYN[realtime@127.0.0.1] Creating tables for scope <Elixir.Extensions.PostgresCdcRls>
2023-11-19 19:06:33 00:06:33.217 [notice] SYN[realtime@127.0.0.1|registry<Elixir.Extensions.PostgresCdcRls>] Discovering the cluster
2023-11-19 19:06:33 00:06:33.217 [notice] SYN[realtime@127.0.0.1|pg<Elixir.Extensions.PostgresCdcRls>] Discovering the cluster
2023-11-19 19:06:36 00:06:36.201 [debug] Tzdata polling for update.
2023-11-19 19:06:36 00:06:36.350 [info] tzdata release in place is from a file last modified Fri, 22 Oct 2021 02:20:47 GMT. Release file on server was last modified Tue, 28 Mar 2023 20:25:39 GMT.
2023-11-19 19:06:36 00:06:36.350 [debug] Tzdata downloading new data from https://data.iana.org/time-zones/tzdata-latest.tar.gz
2023-11-19 19:06:36 00:06:36.420 [debug] Tzdata data downloaded. Release version 2023c.
2023-11-19 19:06:36 00:06:36.748 [info] Tzdata has updated the release from 2021e to 2023c
2023-11-19 19:06:36 00:06:36.748 [debug] Tzdata deleting ETS table for version 2021e
2023-11-19 19:06:36 00:06:36.749 [debug] Tzdata deleting ETS table file for version 2021e

To Reproduce

Not entirely sure. We can give temporary repo access to someone at supabase (just don't want it public). Here are the project details:

  • Next.js 14.0.2 (app router, not pages router, but the realtime subscription is created in the browser by prefixing "use client" at the top of the file)
  • React 18

Expected behavior

  • the error that is occuring to output into the callback (just so I can debug without having to file a bug report as early, hopefully saving the Supabase team time and resources)
  • a subscription should occur

Screenshots

See above.

System information

  • OS: macOS 13.3 (22E252)
  • Browser: Chrome Version 119.0.6045.159 (Official Build) (arm64)
  • Version of supabase-js: 2.38.4 (with CLI version 1.112.0)
  • Version of Node.js: 18.17.1

Additional context

As I mention above, I'll happily give the Supabase team access to our repo if you have trouble reproducing, it's not super sensitive, but enough so that I don't want to make the repo public.

@ghost
Copy link
Author

ghost commented Nov 20, 2023

More recent issues possibly related to this have been reported in supabase/supabase-js#679

@ghost ghost changed the title Supabase Realtime Subscript Fails With Undefined Error Supabase Realtime Subscript Fails With Undefined Error (Possibly: Auth error: tenant realtime-dev not found Nov 20, 2023
@ghost ghost changed the title Supabase Realtime Subscript Fails With Undefined Error (Possibly: Auth error: tenant realtime-dev not found Supabase Realtime Subscript Fails With Undefined Error (Possibly: Auth error: tenant 'realtime-dev' not found Nov 20, 2023
@ghost
Copy link
Author

ghost commented Nov 20, 2023

Not sure if this is related, but I'm noticing that even after running supabase db reset the realtime schema does not have any tables (when it probably should have tables like schema_migrations, channels, etc)

Screenshot 2023-11-19 at 7 31 02 PM

@filipecabaco
Copy link
Contributor

Yes seems related 🤔 and that external id in the logs seems wrong ( realtime-dev-tenant ) as it should be realtime-dev.

tenant_name = "realtime-dev"

it's also still adding the public.tenant which was fixed on version 2.25.35 which is available with the CLI version in the brew beta channel

related issue #745

@guilhermezdev
Copy link

Also facing the same thing, even the example on the supabase docs fail. It was working before updating the CLI.

  const channel = _supabaseClient
    .channel("room1", {
      config: {
        broadcast: {
          ack: true,
          self: true,
        },
      },
    })
    .on("broadcast", { event: "cursor-pos" }, (payload) => {
      console.log("Cursor position received!", payload);
    })
    .subscribe((status, error) => {
      console.log("Channel status:", status, error);
      if (status === "SUBSCRIBED") {
        channel.send({
          type: "broadcast",
          event: "cursor-pos",
          payload: { x: Math.random(), y: Math.random() },
        });
      }
    });

This will always log Channel status: CHANNEL_ERROR undefined

Supabase CLI version: 1.112.0

@ghost
Copy link
Author

ghost commented Nov 20, 2023

Yeah same here I only began experiencing this after going to CLI version 1.112.0.

@filipecabaco
Copy link
Contributor

the cli team will set 1.113.0 as stable to quickly fix this

@ghost
Copy link
Author

ghost commented Nov 20, 2023

I went to 1.113.2 (latest) and this worked. I had to do the following, in this order (if it helps anyone):

  • supabase stop --no-backup
  • brew upgrade supabase
  • supabase start
  • supabase db reset <- my realtime schema was corrupted in 1.112.0

Solved the issue on my end, going to close this.

@ghost ghost closed this as completed Nov 20, 2023
@ghost
Copy link
Author

ghost commented Nov 20, 2023

Thanks for the help @filipecabaco !!

@filipecabaco
Copy link
Contributor

no worries, sorry again for such a big inconvenient

@filipecabaco
Copy link
Contributor

and above all thank you for reporting 🙏

@bigbizze
Copy link

I went to 1.113.2 (latest) and this worked. I had to do the following, in this order (if it helps anyone):

  • supabase stop --no-backup
  • brew upgrade supabase
  • supabase start
  • supabase db reset <- my realtime schema was corrupted in 1.112.0

Solved the issue on my end, going to close this.

this did not solve the issue for me.

my supabase version is 1.113.2

running the above commands, and the version for my realtime container is public.ecr.aws/supabase/realtime:v2.25.35

notably, and similar to the issues here supabase/supabase#12544 both my _realtime and realtime schemas have no tables defined on them when i view them in the studio
image

image

when i run pg_dump "postgresql://supabase_admin:postgres@localhost:54322/postgres" --schema realtime -f realtime.sql

the output is:

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.1 (Ubuntu 15.1-1.pgdg20.04+1)
-- Dumped by pg_dump version 15.5 (Ubuntu 15.5-1.pgdg22.04+1)

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: realtime; Type: SCHEMA; Schema: -; Owner: postgres
--

CREATE SCHEMA realtime;


ALTER SCHEMA realtime OWNER TO postgres;

--
-- PostgreSQL database dump complete
--

and when i run: pg_dump "postgresql://supabase_admin:postgres@localhost:54322/postgres" --schema _realtime -f _realtime.sql

the output is:

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.1 (Ubuntu 15.1-1.pgdg20.04+1)
-- Dumped by pg_dump version 15.5 (Ubuntu 15.5-1.pgdg22.04+1)

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: _realtime; Type: SCHEMA; Schema: -; Owner: postgres
--

CREATE SCHEMA _realtime;


ALTER SCHEMA _realtime OWNER TO postgres;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: extensions; Type: TABLE; Schema: _realtime; Owner: supabase_admin
--

CREATE TABLE _realtime.extensions (
    id uuid NOT NULL,
    type text,
    settings jsonb,
    tenant_external_id text,
    inserted_at timestamp(0) without time zone NOT NULL,
    updated_at timestamp(0) without time zone NOT NULL
);


ALTER TABLE _realtime.extensions OWNER TO supabase_admin;

--
-- Name: schema_migrations; Type: TABLE; Schema: _realtime; Owner: supabase_admin
--

CREATE TABLE _realtime.schema_migrations (
    version bigint NOT NULL,
    inserted_at timestamp(0) without time zone
);


ALTER TABLE _realtime.schema_migrations OWNER TO supabase_admin;

--
-- Name: tenants; Type: TABLE; Schema: _realtime; Owner: supabase_admin
--

CREATE TABLE _realtime.tenants (
    id uuid NOT NULL,
    name text,
    external_id text,
    jwt_secret text,
    max_concurrent_users integer DEFAULT 200 NOT NULL,
    inserted_at timestamp(0) without time zone NOT NULL,
    updated_at timestamp(0) without time zone NOT NULL,
    max_events_per_second integer DEFAULT 100 NOT NULL,
    postgres_cdc_default text DEFAULT 'postgres_cdc_rls'::text,
    max_bytes_per_second integer DEFAULT 100000 NOT NULL,
    max_channels_per_client integer DEFAULT 100 NOT NULL,
    max_joins_per_second integer DEFAULT 500 NOT NULL,
    suspend boolean DEFAULT false
);


ALTER TABLE _realtime.tenants OWNER TO supabase_admin;

--
-- Data for Name: extensions; Type: TABLE DATA; Schema: _realtime; Owner: supabase_admin
--

COPY _realtime.extensions (id, type, settings, tenant_external_id, inserted_at, updated_at) FROM stdin;
58130c7d-9e73-43ec-9e08-af7986875447	postgres_cdc_rls	{"region": "us-east-1", "db_host": "+5JkR7EPoJsAtjz+cdk/ZPFhkdWGR4wQX4lYC4ulOel/kGxTTOC5bwX/RP2J3g7W", "db_name": "sWBpZNdjggEPTQVlI52Zfw==", "db_port": "+enMDFi1J/3IrrquHHwUmA==", "db_user": "uxbEq/zz8DXVD53TOI1zmw==", "slot_name": "supabase_realtime_replication_slot", "ip_version": 4, "db_password": "sWBpZNdjggEPTQVlI52Zfw==", "publication": "supabase_realtime", "ssl_enforced": false, "poll_interval_ms": 100, "poll_max_changes": 100, "poll_max_record_bytes": 1048576}	realtime-dev	2023-11-21 16:47:58	2023-11-21 16:47:58
\.


--
-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: _realtime; Owner: supabase_admin
--

COPY _realtime.schema_migrations (version, inserted_at) FROM stdin;
20210706140551	2023-11-21 16:43:32
20220329161857	2023-11-21 16:43:32
20220410212326	2023-11-21 16:43:32
20220506102948	2023-11-21 16:43:32
20220527210857	2023-11-21 16:43:32
20220815211129	2023-11-21 16:43:32
20220815215024	2023-11-21 16:43:32
20220818141501	2023-11-21 16:43:32
20221018173709	2023-11-21 16:43:32
20221102172703	2023-11-21 16:43:32
20221223010058	2023-11-21 16:43:32
20230110180046	2023-11-21 16:43:32
20230810220907	2023-11-21 16:43:32
20230810220924	2023-11-21 16:43:32
20231024094642	2023-11-21 16:43:32
\.


--
-- Data for Name: tenants; Type: TABLE DATA; Schema: _realtime; Owner: supabase_admin
--

COPY _realtime.tenants (id, name, external_id, jwt_secret, max_concurrent_users, inserted_at, updated_at, max_events_per_second, postgres_cdc_default, max_bytes_per_second, max_channels_per_client, max_joins_per_second, suspend) FROM stdin;
0af72a10-ac6b-40cf-a6b9-620440405dae	realtime-dev	realtime-dev	iNjicxc4+llvc9wovDvqymwfnj9teWMlyOIbJ8Fh6j2WNU8CIJ2ZgjR6MUIKqSmeDmvpsKLsZ9jgXJmQPpwL8w==	200	2023-11-21 16:47:58	2023-11-21 16:47:58	100	postgres_cdc_rls	100000	100	100	f
\.


--
-- Name: extensions extensions_pkey; Type: CONSTRAINT; Schema: _realtime; Owner: supabase_admin
--

ALTER TABLE ONLY _realtime.extensions
    ADD CONSTRAINT extensions_pkey PRIMARY KEY (id);


--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: _realtime; Owner: supabase_admin
--

ALTER TABLE ONLY _realtime.schema_migrations
    ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);


--
-- Name: tenants tenants_pkey; Type: CONSTRAINT; Schema: _realtime; Owner: supabase_admin
--

ALTER TABLE ONLY _realtime.tenants
    ADD CONSTRAINT tenants_pkey PRIMARY KEY (id);


--
-- Name: extensions_tenant_external_id_type_index; Type: INDEX; Schema: _realtime; Owner: supabase_admin
--

CREATE UNIQUE INDEX extensions_tenant_external_id_type_index ON _realtime.extensions USING btree (tenant_external_id, type);


--
-- Name: tenants_external_id_index; Type: INDEX; Schema: _realtime; Owner: supabase_admin
--

CREATE UNIQUE INDEX tenants_external_id_index ON _realtime.tenants USING btree (external_id);


--
-- Name: extensions extensions_tenant_external_id_fkey; Type: FK CONSTRAINT; Schema: _realtime; Owner: supabase_admin
--

ALTER TABLE ONLY _realtime.extensions
    ADD CONSTRAINT extensions_tenant_external_id_fkey FOREIGN KEY (tenant_external_id) REFERENCES _realtime.tenants(external_id) ON DELETE CASCADE;


--
-- PostgreSQL database dump complete
--

@JunsikChoi
Copy link

I have same issue with supabase@1.115.4

@filipecabaco
Copy link
Contributor

@JunsikChoi can you confirm the solution was the one you shared in #748 ?

@JunsikChoi
Copy link

@JunsikChoi can you confirm the solution was the one you shared in #748 ?

Yes, it resolved completely for now. Realtime works great in local dev.

@filipecabaco
Copy link
Contributor

😌 glad it worked! again big thank you for finding the solution 🙏

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants