You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by "shibd (via GitHub)" <gi...@apache.org> on 2023/02/07 15:45:59 UTC

[GitHub] [pulsar-client-node] shibd commented on issue #281: Failed to create producer: ConnectError when upgrading to 1.8.0

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: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org