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
I`m using
credentials = grpc.credentials.createSsl(null, null, null, { rejectUnauthorized: false });
to pass self signed certifacate check. After upgrading to version 1.13.0 my code produces error:
14 UNAVAILABLE: No connection established. Last error: DEPTH_ZERO_SELF_SIGNED_CERT
Use code like this to connect to service with self signed certificate:
const credentials = grpc.credentials.createSsl(null, null, null, { rejectUnauthorized: false }) const svc = new grpcPkg[pkg_name][service_name](options.addr, credentials, {}) svc[method]({}, (err, res) => {})
OS: Linux Debian Node: v18.16.1 @grpc/grpc-js 1.13.0
The text was updated successfully, but these errors were encountered:
This is fixed in version 1.13.1.
Sorry, something went wrong.
No branches or pull requests
Problem description
I`m using
to pass self signed certifacate check. After upgrading to version 1.13.0 my code produces error:
Reproduction steps
Use code like this to connect to service with self signed certificate:
Environment
OS: Linux Debian
Node: v18.16.1
@grpc/grpc-js 1.13.0
Additional context
The text was updated successfully, but these errors were encountered: