File tree Expand file tree Collapse file tree 6 files changed +20
-4
lines changed
scripts/generate_list_env_vars Expand file tree Collapse file tree 6 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 5353| SE_HTTPS_PRIVATE_KEY | /opt/selenium/secrets/tls.key | | --https-private-key |
5454| SE_ENABLE_TRACING | true | | --tracing |
5555| SE_OTEL_EXPORTER_ENDPOINT | | | -Dotel.exporter.otlp.endpoint= |
56- | SE_OTEL_SERVICE_NAME | selenium-event-bus | | -Dotel.resource.attributes=service.name= |
56+ | SE_OTEL_SERVICE_NAME | selenium-router | | -Dotel.resource.attributes=service.name= |
5757| SE_OTEL_JVM_ARGS | | | |
5858| SE_OTEL_TRACES_EXPORTER | otlp | | -Dotel.traces.exporter |
5959| SE_OTEL_JAVA_GLOBAL_AUTOCONFIGURE_ENABLED | true | | |
7575| SE_EVENT_BUS_PUBLISH_PORT | 4442 | | |
7676| SE_EVENT_BUS_SUBSCRIBE_PORT | 4443 | | |
7777| SE_NODE_SESSION_TIMEOUT | 300 | | --session-timeout |
78- | SE_NODE_ENABLE_MANAGED_DOWNLOADS | true | | --enable-managed-downloads |
78+ | SE_NODE_ENABLE_MANAGED_DOWNLOADS | true | This causes the Node to auto manage files downloaded for a given session on the Node | --enable-managed-downloads |
7979| SE_NODE_ENABLE_CDP | | | --enable-cdp |
8080| SE_NODE_REGISTER_PERIOD | 120 | | --register-period |
8181| SE_NODE_REGISTER_CYCLE | 10 | | --register-cycle |
152152| SE_VIDEO_BUFSIZE | | | |
153153| SE_VIDEO_CRF | | | |
154154| SE_VIDEO_MAXRATE | | | |
155+ | SE_NODE_DELETE_SESSION_ON_UI | true | Enable capability to support deleting session on Grid UI | --delete-session-on-ui |
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ ENV LANG_WHICH=${LANG_WHICH} \
5656 SE_OFFLINE="true" \
5757 SE_NODE_BROWSER_VERSION="stable" \
5858 SE_NODE_PLATFORM_NAME="Linux" \
59+ SE_NODE_DELETE_SESSION_ON_UI="true" \
5960# ============================
6061# Some configuration options
6162# ============================
Original file line number Diff line number Diff line change @@ -73,6 +73,10 @@ if [ "$SE_NODE_REGISTER_SHUTDOWN_ON_FAILURE" = "true" ]; then
7373 append_se_opts " --register-shutdown-on-failure"
7474fi
7575
76+ if [ " $SE_NODE_DELETE_SESSION_ON_UI " = " true" ]; then
77+ append_se_opts " --delete-session-on-ui" " true"
78+ fi
79+
7680if [ ! -z " $SE_NODE_HEARTBEAT_PERIOD " ]; then
7781 append_se_opts " --heartbeat-period" " ${SE_NODE_HEARTBEAT_PERIOD} "
7882fi
Original file line number Diff line number Diff line change @@ -72,6 +72,10 @@ if [ ! -z "$SE_NODE_HEARTBEAT_PERIOD" ]; then
7272 append_se_opts " --heartbeat-period" " ${SE_NODE_HEARTBEAT_PERIOD} "
7373fi
7474
75+ if [ " $SE_NODE_DELETE_SESSION_ON_UI " = " true" ]; then
76+ append_se_opts " --delete-session-on-ui" " true"
77+ fi
78+
7579if [ ! -z " $SE_LOG_LEVEL " ]; then
7680 append_se_opts " --log-level" " ${SE_LOG_LEVEL} "
7781fi
Original file line number Diff line number Diff line change 228228 description : ' '
229229 cli : --session-timeout
230230- name : SE_NODE_ENABLE_MANAGED_DOWNLOADS
231- description : ' '
231+ description : This causes the Node to auto manage files downloaded for a given session
232+ on the Node
232233 cli : --enable-managed-downloads
233234- name : SE_NODE_ENABLE_CDP
234235 description : ' '
464465- name : SE_VIDEO_MAXRATE
465466 description : ' '
466467 cli : ' '
468+ - name : SE_NODE_DELETE_SESSION_ON_UI
469+ description : Enable capability to support deleting session on Grid UI
470+ cli : --delete-session-on-ui
Original file line number Diff line number Diff line change 8686 default : ' 10'
8787- name : SE_NODE_CONTAINER_NAME
8888 default : ' '
89+ - name : SE_NODE_DELETE_SESSION_ON_UI
90+ default : ' true'
8991- name : SE_NODE_DOCKER_CONFIG_FILENAME
9092 default : docker.toml
9193- name : SE_NODE_ENABLE_CDP
161163- name : SE_OTEL_RESOURCE_ATTRIBUTES
162164 default : ' '
163165- name : SE_OTEL_SERVICE_NAME
164- default : selenium-event-bus
166+ default : selenium-router
165167- name : SE_OTEL_TRACES_EXPORTER
166168 default : otlp
167169- name : SE_PRESET
You can’t perform that action at this time.
0 commit comments