Has anyone experienced this error; ```npx prisma ...
# orm-help
j
Has anyone experienced this error;
Copy code
npx prisma db seed --preview-feature
Environment variables loaded from .env
Prisma schema loaded from prisma/schema.prisma
Running ts-node "prisma/seed.ts" ...
Failed to seed data, Error: 
Invalid `prisma.product.upsert()` invocation:


  Error occurred during query execution:
ConnectorError(ConnectorError { user_facing_error: None, kind: ConnectionError(Timed out during query execution.) })
r
looks like it cannot connect to your database. is it local or in cloud? is the URL variable correctly set? can you connect to it directly?
j
I am pointed to a local file, using sqlite provider. The error is thrown but the seeding is successful
r
it says it failed to seed, so i assume one of your seeds it the issue. try commenting out all but the first and see if it passes?