Skip to content

Commit 6c779d2

Browse files
authored
Updated Session map to work with selenium 4.1.2 (#10473)
[skip ci]
1 parent e0d9309 commit 6c779d2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

java/src/org/openqa/selenium/grid/commands/sessionmaps.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ following types of data store.
1111
SESSIONS_IMPLEMENTATION=org.openqa.selenium.grid.sessionmap.redis.RedisBackedSessionMap \
1212
SESSIONS_SCHEME=redis \
1313
java -jar selenium.jar \
14-
--ext $(coursier fetch -p org.seleniumhq.selenium:selenium-session-map-redis:4.0.0-alpha-6) \
14+
--ext $(coursier fetch -p org.seleniumhq.selenium:selenium-session-map-redis:4.1.2) \
1515
sessions --sessions-host "<redis_host>" --sessions-port <redis_port>
1616
```
1717

@@ -39,7 +39,7 @@ CREATE TABLE sessions_map(
3939
session_start varchar(256)
4040
);
4141
```
42-
42+
4343
Here the size of each column is an arbitrary number. Ensure the datatype and limit matches the selected database. Also, the limit for varchar type should be able to accommodate the
4444
capabilities json stored in "session_caps" and stereotype json stored in "session_stereotype".
4545

@@ -49,7 +49,7 @@ To start the `JdbcBackedSessionMap`:
4949
SESSIONS_IMPLEMENTATION=org.openqa.selenium.grid.sessionmap.jdbc.JdbcBackedSessionMap \
5050
SESSIONS_SCHEME=jdbc \
5151
java -jar selenium.jar
52-
--ext $(coursier fetch -p org.seleniumhq.selenium:selenium-session-map-jdbc:4.0.0-alpha-6 org.postgresql:postgresql:42.2.14.jre7) \
52+
--ext $(coursier fetch -p org.seleniumhq.selenium:selenium-session-map-jdbc:4.1.2 org.postgresql:postgresql:42.2.14.jre7) \
5353
sessions \
5454
--jdbc-user "<jdbc_user>" --jdbc-password "<jdbc_password>" \
5555
--jdbc-url "<jdbc_url>"

0 commit comments

Comments
 (0)