Skip to content

Commit

Permalink
EPMRPP-86250 || Update Analyzer settings. Provide the base for analys…
Browse files Browse the repository at this point in the history
…is: Current launch and Current launch+previous
  • Loading branch information
APiankouski authored Oct 3, 2023
2 parents e9c131f + 07815af commit b2fb5e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public class AnalyzeLaunchRQ {

@NotNull
@JsonProperty(value = "analyzerMode", required = true)
@In(allowedValues = { "all", "launch_name", "current_launch" })
@ApiModelProperty(allowableValues = "ALL, LAUNCH_NAME, CURRENT_LAUNCH")
@In(allowedValues = { "all", "launch_name", "current_launch", "previous_launch", "current_and_the_same_name" })
@ApiModelProperty(allowableValues = "ALL, LAUNCH_NAME, CURRENT_LAUNCH, PREVIOUS_LAUNCH, CURRENT_AND_THE_SAME_NAME")
private String analyzerHistoryMode;

@NotNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public class AnalyzerConfig {
private Boolean isAutoAnalyzerEnabled;

@JsonProperty(value = "analyzerMode")
@In(allowedValues = { "all", "launch_name", "current_launch" })
@ApiModelProperty(allowableValues = "ALL, LAUNCH_NAME")
@In(allowedValues = { "all", "launch_name", "current_launch", "previous_launch", "current_and_the_same_name" })
@ApiModelProperty(allowableValues = "ALL, LAUNCH_NAME, CURRENT_LAUNCH, PREVIOUS_LAUNCH, CURRENT_AND_THE_SAME_NAME")
private String analyzerMode;

@JsonProperty(value = "indexingRunning")
Expand Down

0 comments on commit b2fb5e6

Please sign in to comment.