We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code triggers the error (deno run --allow-env main.ts):
import { PostgresConnector } from "https://deno.land/x/[email protected]/mod.ts"; new PostgresConnector({ host: "localhost", username: "postgres", password: "postgres", database: "test", });
Deno.exit(0); can be added at the end of the script as a workaround to force it to exit.
Deno.exit(0);
Everything running on Windows 11, PostgreSQL 15.1.0.
deno --version deno 1.29.1 (release, x86_64-pc-windows-msvc) v8 10.9.194.5 typescript 4.9.4
The text was updated successfully, but these errors were encountered:
This is deeper than that, it seems like it happens for any connector and doesn't even require instantiation, this also hangs for me:
import { MySQLConnector } from 'https://deno.land/x/[email protected]/mod.ts'; console.log(MySQLConnector);
Sorry, something went wrong.
No branches or pull requests
The following code triggers the error (deno run --allow-env main.ts):
Deno.exit(0);
can be added at the end of the script as a workaround to force it to exit.Everything running on Windows 11, PostgreSQL 15.1.0.
The text was updated successfully, but these errors were encountered: