Skip to content

Commit

Permalink
fix: Rejecting message without a valid secret in session-map
Browse files Browse the repository at this point in the history
Fix: #2320
  • Loading branch information
VietND96 authored Jul 24, 2024
1 parent 0bb07ef commit 9453505
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Sessions/start-selenium-grid-sessions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ if [ ! -z "$SE_JAVA_SSL_TRUST_STORE" ]; then
SE_JAVA_OPTS="$SE_JAVA_OPTS -Djdk.internal.httpclient.disableHostnameVerification=${SE_JAVA_DISABLE_HOSTNAME_VERIFICATION:-true}"
fi

if [ ! -z "$SE_REGISTRATION_SECRET" ]; then
echo "Appending Selenium options: --registration-secret ${SE_REGISTRATION_SECRET}"
SE_OPTS="$SE_OPTS --registration-secret ${SE_REGISTRATION_SECRET}"
fi

EXTRA_LIBS=""

if [ "$SE_ENABLE_TRACING" = "true" ]; then
Expand Down

0 comments on commit 9453505

Please sign in to comment.