Steve PECHBERTI

Results 4 comments of Steve PECHBERTI

Hi caoccao, I agree with you, hacking NodeJS is not the solution :) And this is why I appreciate your work, we stay with a NodeJS reference implementation. As I...

Hi caoccao, I try your suggestion adding a 'close()' call somewhere in another thread in method 'nodeJSKiller(...)' but I have a JVM crash, here is the code: ```java public class...

Okay, my mistake ! To be short, It works, here is the full code: **main_test2.js** ```javascript const http = require("http"); const requestListener = function (req, res) { res.writeHead(200, { 'Content-Type':'text/html'...

For those with the same problem and before adding a most valuable solution, a working hack: 1- add to build.gradle ``` ext { ROS2_JAVA_CP = files(System.getenv("ROS2_JAVA_CLASSPATH").split(File.pathSeparator)) } compileJava { doFirst...