Skip to content

Commit

Permalink
[grid] Fixing env var name to stream VNC
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
diemol committed Jun 24, 2022
1 parent 209d778 commit 5571415
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public class NodeFlags implements HasRoles {
names = "--vnc-env-var",
description = "Environment variable to check in order to determine if a vnc stream is " +
"available or not.")
@ConfigValue(section = NODE_SECTION, name = "vnc-env-var", example = "START_XVFB")
@ConfigValue(section = NODE_SECTION, name = "vnc-env-var", example = "SE_START_XVFB")
public String vncEnvVar = DEFAULT_VNC_ENV_VAR;

@Parameter(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class NodeOptions {
static final String NODE_SECTION = "node";
static final boolean DEFAULT_DETECT_DRIVERS = true;
static final boolean OVERRIDE_MAX_SESSIONS = false;
static final String DEFAULT_VNC_ENV_VAR = "START_XVFB";
static final String DEFAULT_VNC_ENV_VAR = "SE_START_XVFB";
static final int DEFAULT_NO_VNC_PORT = 7900;
static final int DEFAULT_REGISTER_CYCLE = 10;
static final int DEFAULT_REGISTER_PERIOD = 120;
Expand Down

0 comments on commit 5571415

Please sign in to comment.