-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EPMRPP-86250 || Update Analyzer settings. Provide the base for analysis: Current launch and Current launch+previous #354
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" }) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
@ApiModelProperty(allowableValues = "ALL, LAUNCH_NAME, CURRENT_LAUNCH, PREVIOUS_LAUNCH, CURRENT_AND_THE_SAME_NAME") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
private String analyzerHistoryMode; | ||
|
||
@NotNull | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" }) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
@ApiModelProperty(allowableValues = "ALL, LAUNCH_NAME, CURRENT_LAUNCH, PREVIOUS_LAUNCH, CURRENT_AND_THE_SAME_NAME") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
private String analyzerMode; | ||
|
||
@JsonProperty(value = "indexingRunning") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is longer than 100 characters (found 119).