-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Open
Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!B-gridEverything grid and server relatedEverything grid and server relatedC-javaJava BindingsJava BindingsI-defectSomething is not working as intendedSomething is not working as intendedOS-mac
Description
Description
I started the Browser Node using the org.openqa.selenium.grid.node.httpd.NodeServer class and need to stop the NodeServer in certain use cases.
I tried using the stop() method to stop the NodeServer, but the server does not stop, and the port remains occupied even after calling stop().
Expected behaviour: The stop() method should properly shut down the NodeServer and release the port.
Reproducible Code
//Code used to Start the server
NodeServer nodeServer = new NodeServer();
Server server = nodeServer.asServer(nodeConfiguration);
server.start();
//Code used to Stop the server
server.stop();
Metadata
Metadata
Assignees
Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!B-gridEverything grid and server relatedEverything grid and server relatedC-javaJava BindingsJava BindingsI-defectSomething is not working as intendedSomething is not working as intendedOS-mac