shibd commented on issue #281: URL: https://github.com/apache/pulsar-client-node/issues/281#issuecomment-1420992237
### Summary This is because cross-compilation results in the `CA cert bundle` not being set on the ARM64 Mac. Refer to this: https://github.com/apache/pulsar-client-cpp/issues/184#issuecomment-1420909521 We need to wait for this [PR](https://github.com/apache/pulsar-client-cpp/pull/190) to be released and then upgrade the CPP dependencies. It can then be solved on arm64 by configuring `tlsTrustCertsFilePath` ``` const client = new Pulsar.Client({ serviceUrl: 'url', tlsTrustCertsFilePath:'/etc/ssl/cert.pem', }); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
