Skip to content

Commit

Permalink
Fixing build error
Browse files Browse the repository at this point in the history
  • Loading branch information
john-westcott-iv committed Jun 10, 2020
1 parent 8aee1aa commit ad26a5e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public AnsibleTowerStep(
this.scmBranch = scmBranch;
this.verbose = verbose;
this.towerLogLevel = importTowerLogs.toString();
this.importTowerLogs = importTowerLogs;
this.removeColor = removeColor;
this.templateType = templateType;
this.importWorkflowChildLogs = importWorkflowChildLogs;
Expand Down Expand Up @@ -133,7 +134,10 @@ public AnsibleTowerStep(
@DataBoundSetter
public void setVerbose(Boolean verbose) { this.verbose = verbose; }
@DataBoundSetter
public void setImportTowerLogs(Boolean importTowerLogs) { this.towerLogLevel = importTowerLogs.toString(); }
public void setImportTowerLogs(Boolean importTowerLogs) {
this.importTowerLogs = importTowerLogs;
this.towerLogLevel = importTowerLogs.toString();
}
@DataBoundSetter
public void setTowerLogLevel(String importTowerLogs) { this.towerLogLevel = importTowerLogs; }
@DataBoundSetter
Expand Down

0 comments on commit ad26a5e

Please sign in to comment.