ericallam commented on issue #283:
URL: 
https://github.com/apache/pulsar-client-node/issues/283#issuecomment-1378712685

   I just confirmed that i am getting a segfault (pulled the image and in a run 
the following code in a node repl)
   
   ```js
   const Pulsar = require("pulsar-client");
   Pulsar.Client.setLogHandler((level, file, line, message) => { 
console.log("[%s][%s:%d] %s", level, file, line, message); });
   var authentication = new Pulsar.AuthenticationOauth2({
     type: "sn_service_account",
     client_id: process.env.PULSAR_CLIENT_ID,
     client_secret: process.env.PULSAR_CLIENT_SECRET,
     issuer_url: process.env.PULSAR_ISSUER_URL,
     audience: process.env.PULSAR_AUDIENCE,
   });
   
   var client = new Pulsar.Client({
     serviceUrl: process.env.PULSAR_SERVICE_URL,
     authentication: authentication,
   });
   
   client.createProducer({ topic: "persistent://public/default/inside-docker" 
}).then((producer) => { console.log("created producer"); 
}).catch(console.error);
   ```
   
   And got the following error (no other output):
   
   `Segmentation fault (core dumped)`


-- 
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]

Reply via email to