Skip to content

Commit

Permalink
JENKINS-33206 Xvfb plugin doesn't remember "Log Xvfb output" set via the
Browse files Browse the repository at this point in the history
configuration page
  • Loading branch information
zregvart committed Mar 20, 2016
1 parent fa47c05 commit 050a80c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/org/jenkinsci/plugins/xvfb/Xvfb.java
Expand Up @@ -396,7 +396,7 @@ private static XmlFile zombiesFile() {
private String screen = DEFAULT_SCREEN;

/** Should the Xvfb output be displayed in job output. */
private final boolean debug = false;
private boolean debug = false;

/** Time in milliseconds to wait for Xvfb initialization, by default 0 -- do not wait. */
private long timeout;
Expand Down Expand Up @@ -625,6 +625,11 @@ public void setAutoDisplayName(final boolean autoDisplayName) {
this.autoDisplayName = autoDisplayName;
}

@DataBoundSetter
public void setDebug(final boolean debug) {
this.debug = debug;
}

@DataBoundSetter
public void setDisplayName(final Integer displayName) {
this.displayName = displayName;
Expand Down

0 comments on commit 050a80c

Please sign in to comment.