Skip to content

Commit fc97b69

Browse files
authored
Alpha 7 prerelease (117b9d61c9) (#1107) [deploy][prerelease]
* Alpha 7 prerelease (117b9d61c9) * Relaxing checks for hub This makes 3.x clients work when they do not send the content-type header. In the major release, users will need to enable this themselves. * Relaxing checks for router This makes 3.x clients work when they do not send the content-type header. In the major release, users will need to enable this themselves.
1 parent 1514630 commit fc97b69

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ COPY supervisord.conf /etc
7171
RUN mkdir -p /opt/selenium /var/run/supervisor /var/log/supervisor \
7272
&& touch /opt/selenium/config.json \
7373
&& chmod -R 777 /opt/selenium /var/run/supervisor /var/log/supervisor /etc/passwd \
74-
&& wget --no-verbose https://github.com/SeleniumHQ/docker-selenium/raw/alpha-jars/selenium-server-4.0.0-alpha-7-43fc7cf908.jar \
74+
&& wget --no-verbose https://github.com/SeleniumHQ/docker-selenium/raw/alpha-jars/selenium-server-4.0.0-alpha-7-117b9d61c9.jar \
7575
-O /opt/selenium/selenium-server.jar \
7676
# && wget --no-verbose https://selenium-release.storage.googleapis.com/4.0-alpha-6/selenium-server-4.0.0-alpha-6.jar \
7777
# -O /opt/selenium/selenium-server.jar \

Hub/start-selenium-grid-hub.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ if [ ! -z "$SE_OPTS" ]; then
99
echo "Appending Selenium options: ${SE_OPTS}"
1010
fi
1111

12-
java ${JAVA_OPTS} -jar /opt/selenium/selenium-server.jar hub ${SE_OPTS}
12+
java ${JAVA_OPTS} -jar /opt/selenium/selenium-server.jar hub --relax-checks true ${SE_OPTS}

Router/start-selenium-grid-router.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ fi
3232
java ${JAVA_OPTS} -jar /opt/selenium/selenium-server.jar router \
3333
--sessions-host "${SE_SESSIONS_MAP_HOST}" --sessions-port ${SE_SESSIONS_MAP_PORT} \
3434
--distributor-host "${SE_DISTRIBUTOR_HOST}" --distributor-port ${SE_DISTRIBUTOR_PORT} \
35-
${SE_OPTS}
35+
--relax-checks true ${SE_OPTS}

0 commit comments

Comments
 (0)