-
Notifications
You must be signed in to change notification settings - Fork 101
Open
Description
I have a Sveltekit project with vite and running everything in deno. after updating version 3.4.1 or higher the project will break with
error: Uncaught (in worker "") (in promise) TypeError: Cannot read properties of undefined (reading 'Symbol(Deno.internal.rid)')
at TCP.#read (ext:deno_node/internal_binding/stream_wrap.ts:227:45)
at TCP.readStart (ext:deno_node/internal_binding/stream_wrap.ts:90:17)
at _tryReadStart (node:net:404:30)
at Socket.resume (node:net:838:7)
at updateReadableListening (ext:deno_node/internal/streams/readable.js:1294:10)
at processTicksAndRejections (ext:deno_node/_next_tick.ts:33:15)
at runNextTicks (ext:deno_node/_next_tick.ts:76:3)
at eventLoopTick (ext:core/01_core.js:185:21)
when using port 3306 for the connectionPool
this.pool = mariadb.createPool(
{
host: host,
port: 3306,
user: user,
password: password,
database: database,
}
);
With other ports like 2207 or 3308 there is no error during build.
I have also created a bug in the deno repository since I don't know where this has to be fixed.
In the meantime I can only rollback to 3.4.0 since it was the last working version.
Metadata
Metadata
Assignees
Labels
No labels