-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[grid] Introduced new variable for server start timeout #15345
[grid] Introduced new variable for server start timeout #15345
Conversation
Added a new variable in DockerSessionFactory that can be used as a maximum to wait for the server/node to start. Made it adjustable via a DockerFlag and set the default to 60 seconds, which was previously the hardcoded value in that field. Also added a line to Dockerfile in dev-image, because dev container was not working as is. Fixes SeleniumHQ#1
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
Removed an added line from the Dockerfile to be able to contribute it in a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please run ./scripts/format.sh
to fix the linting issues.
Thank you, @FloKNetcare! |
…5345) * Introduced new variable for server start timeout Added a new variable in DockerSessionFactory that can be used as a maximum to wait for the server/node to start. Made it adjustable via a DockerFlag and set the default to 60 seconds, which was previously the hardcoded value in that field.
User description
Added a new variable in DockerSessionFactory that can be used as a maximum to wait for the server/node to start. Made it adjustable via a DockerFlag and set the default to 60 seconds, which was previously the hardcoded value in that field.
Also added a line to Dockerfile in dev-image, because dev container was not working as is.
Fixes #1(I apologize, I thought the total number of issues fixed was meant here, not the exact number to identify the issue that was fixed)Motivation and Context
We encountered a problem that our node wasn't ready by the time it was given to start up (1 Minute in the current version of the code and not adjustable). So we wanted to make it adjustable and see if the node starts up if given more time. We already have built the jar with the changes and were able to set up the server start timeout successfully (and the node actually started up successfully to after about 90 seconds).
We also saw that the dev container is not able to start up as it is right now, we added a line in the dev-image/Dockerfile to fix it.
Types of changes
Checklist
PR Type
Bug fix, Enhancement
Description
Introduced a configurable server start timeout in DockerSessionFactory.
Added a new DockerFlag for server start timeout configuration.
Updated dev-image Dockerfile to fix container startup issues.
Adjusted default server start timeout to 60 seconds.
Changes walkthrough 📝
DockerFlags.java
Introduced server start timeout flag
java/src/org/openqa/selenium/grid/node/docker/DockerFlags.java
--docker-server-start-timeout
.DockerOptions.java
Added server start timeout configuration
java/src/org/openqa/selenium/grid/node/docker/DockerOptions.java
DockerSessionFactory.java
Integrated server start timeout in session factory
java/src/org/openqa/selenium/grid/node/docker/DockerSessionFactory.java
serverStartTimeout
field.logic.
Dockerfile
Fixed dev container startup issues
scripts/dev-image/Dockerfile