Docker: Unified node config session-timeout from generated TOML file#2598
Docker: Unified node config session-timeout from generated TOML file#2598
Conversation
Signed-off-by: Viet Nguyen Duc <nguyenducviet4496@gmail.com>
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
User description
Thanks for contributing to the Docker-Selenium project!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines, applied for this repository.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
Fixes #2559
By default, it is present in the generated TOML config file, with no CLI option to avoid unexpected higher precedence value taking effect.
Motivation and Context
Types of changes
Checklist
PR Type
Bug fix, Enhancement
Description
Unified handling of
session-timeoutconfiguration in TOML files.Removed redundant
session-timeoutenvironment variable handling instart-selenium-node.sh.Adjusted TOML file generation to ensure proper formatting for
session-timeout.Improved consistency in configuration handling across Node and Standalone setups.
Changes walkthrough 📝
start-selenium-node.sh
Removed redundant `session-timeout` environment variable handlingNodeBase/start-selenium-node.sh
SE_NODE_SESSION_TIMEOUTenvironmentvariable.
session-timeout.generate_config
Fixed `session-timeout` formatting in TOML generationNodeBase/generate_config
session-timeoutentry to remove unnecessary quotes.generate_config
Corrected `session-timeout` formatting in Standalone TOML generationStandalone/generate_config
session-timeoutentry to remove unnecessary quotes.