-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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]: Add node sessionTimeout to Grid status #14582
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
CI Failure Feedback 🧐(Checks updated until commit d4fbc9f)
✨ CI feedback usage guide:The CI feedback tool (
In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:
where Configuration options
See more information about the |
10e3510
to
6b35747
Compare
java/src/org/openqa/selenium/grid/router/GridStatusHandler.java
Outdated
Show resolved
Hide resolved
836e903
to
600e63f
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## trunk #14582 +/- ##
==========================================
- Coverage 58.48% 57.78% -0.70%
==========================================
Files 86 89 +3
Lines 5270 5609 +339
Branches 220 245 +25
==========================================
+ Hits 3082 3241 +159
- Misses 1968 2123 +155
- Partials 220 245 +25 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Viet Nguyen Duc <[email protected]>
600e63f
to
4f97f73
Compare
User description
Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
This fixes the error could be seen in Router
Node config
--session-timeout
reflect to Grid status as belowMotivation and Context
Types of changes
Checklist
PR Type
enhancement, bug fix
Description
Changes walkthrough 📝
Grid.java
Include session timeout in Grid node information
java/src/org/openqa/selenium/grid/graphql/Grid.java
Node.java
Add session timeout field to Node class
java/src/org/openqa/selenium/grid/graphql/Node.java
sessionTimeout
field to Node class.GridStatusHandler.java
Include session timeout in Grid status response
java/src/org/openqa/selenium/grid/router/GridStatusHandler.java
Node.java
Ensure session timeout is non-null in Node
java/src/org/openqa/selenium/grid/node/Node.java