Skip to content

Commit 5571415

Browse files
committed
[grid] Fixing env var name to stream VNC
[skip ci]
1 parent 209d778 commit 5571415

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

java/src/org/openqa/selenium/grid/node/config/NodeFlags.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public class NodeFlags implements HasRoles {
180180
names = "--vnc-env-var",
181181
description = "Environment variable to check in order to determine if a vnc stream is " +
182182
"available or not.")
183-
@ConfigValue(section = NODE_SECTION, name = "vnc-env-var", example = "START_XVFB")
183+
@ConfigValue(section = NODE_SECTION, name = "vnc-env-var", example = "SE_START_XVFB")
184184
public String vncEnvVar = DEFAULT_VNC_ENV_VAR;
185185

186186
@Parameter(

java/src/org/openqa/selenium/grid/node/config/NodeOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public class NodeOptions {
7474
static final String NODE_SECTION = "node";
7575
static final boolean DEFAULT_DETECT_DRIVERS = true;
7676
static final boolean OVERRIDE_MAX_SESSIONS = false;
77-
static final String DEFAULT_VNC_ENV_VAR = "START_XVFB";
77+
static final String DEFAULT_VNC_ENV_VAR = "SE_START_XVFB";
7878
static final int DEFAULT_NO_VNC_PORT = 7900;
7979
static final int DEFAULT_REGISTER_CYCLE = 10;
8080
static final int DEFAULT_REGISTER_PERIOD = 120;

0 commit comments

Comments
 (0)