Skip to content

kohdan/electric-repro

Repository files navigation

Bug Reproduction Steps:

  1. docker compose up -d
  2. pnpm run dev
  3. go to localhost:5173 in browser and open devtools
  4. observe http 400 error since there are no tables
  5. psql "postgresql://postgres:password@localhost:54321/electric"
  6. create table:
create table items ( id int primary key generated always as identity );
  1. refresh web page and observe request success
  2. drop and create table:
drop table items; create table items ( id int primary key generated always as identity );
  1. refresh web page and wait ~1 minute
  2. observe torrent of requests and 429 responses

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors