bhecquet

Results 36 comments of bhecquet

Hello I do not get any error, but the option is not used It was not clear in the code example but this ils extracted from Hub class which starts...

Yes, you're right, the option is present, but it's not used If you look at https://github.com/SeleniumHQ/selenium/blob/2c9cbd7c3322c1e38afc02191e8dc3f02de47866/java/src/org/openqa/selenium/grid/commands/Hub.java#L156 , you can see that a LocalDistributor is created, it does not use the...

I can try ==> I cannot setup the build environment on my computer (provided by my company) bazel fails, so I'm afraid I will not be able to provide a...

Hello from what I've seen, it's not possible do add routes to node / hub, so I ended up using a node-implementation that creates a servlet server, but it's not...

@ccarmannt : you can look at my custom grid: https://github.com/bhecquet/seleniumRobot-grid/tree/selenium4 Especially - for servlets on node: https://github.com/bhecquet/seleniumRobot-grid/blob/selenium4/src/main/java/com/infotel/seleniumrobot/grid/node/SeleniumRobotNodeFactory.java - for servlets on hub/router: https://github.com/bhecquet/seleniumRobot-grid/blob/selenium4/src/main/java/com/infotel/seleniumrobot/grid/GridStarter.java#L443 Servlet server is started on router /...

I did a memory dump. Put in Eclipse Memory Analyzer: ![image](https://github.com/SeleniumHQ/selenium/assets/18628677/16d07c23-0851-4509-bf2d-9e351c1c656f)

We've analyzed the code in JdkHttpClient.java and the memory dump and we thought the problem might also be in the close method, where "websockets" list is not cleared, which could...

Hello, I just tested the 4.16.0 version, and I observe the same behaviour as with 4.15.0

Hello @pujagani , I will try to provide you a minimal test that reproduce the problem

I've a strange behavior when trying to reproduce the thread leak problem on my setup. Sometimes, 2 threads (HttpClient-xx-SelectorManager) are created, and sometimes only once. At least, I see the...