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
Use mTLS within NativeConnectionOptions to connect to a cluster
NativeConnectionOptions
Moving from 1.11.3 to 1.11.5 broke the NativeConnectionOptions / connect call with a TransportError
/app/node_modules/@temporalio/worker/lib/connection.js:58 throw new core_bridge_1.TransportError(err.message); ^ TransportError: tonic::transport::Error(Transport, NativeCertsNotFound) at NativeConnection.connect (/app/node_modules/@temporalio/worker/lib/connection.js:58:23)
Able to confirm it's an issue with 1.11.5 after reverting back to 1.11.3
tlsConfig option
connectionOptions.tls = { serverNameOverride: config.TEMPORAL_TLS_SERVER_NAME, serverRootCACertificate: fs.readFileSync(config.TEMPORAL_TLS_CA), clientCertPair: { crt: fs.readFileSync(config.TEMPORAL_TLS_CERT), key: fs.readFileSync(config.TEMPORAL_TLS_KEY), }, }
The application is built and deployed as a docker image
node:22.11.0-bookworm-slim
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What are you really trying to do?
Use mTLS within
NativeConnectionOptions
to connect to a clusterDescribe the bug
Moving from 1.11.3 to 1.11.5 broke the
NativeConnectionOptions
/ connect call with a TransportErrorAble to confirm it's an issue with 1.11.5 after reverting back to 1.11.3
Minimal Reproduction
tlsConfig option
Environment/Versions
The application is built and deployed as a docker image
node:22.11.0-bookworm-slim
The text was updated successfully, but these errors were encountered: