Skip to content

Commit

Permalink
Merge pull request #357 from reportportal/feature/EPMRPP-87332
Browse files Browse the repository at this point in the history
EPMRPP-87332 || Send launchNumber to analyzer
  • Loading branch information
APiankouski authored Nov 3, 2023
2 parents 2cdb3e2 + 67c5f50 commit 2ebbf09
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ public class IndexLaunch {
@JsonProperty("clusters")
private Map<Long, String> clusters;

@JsonProperty("launchNumber")
private Long launchNumber;

public IndexLaunch() {
}

Expand Down Expand Up @@ -111,4 +114,12 @@ public Map<Long, String> getClusters() {
public void setClusters(Map<Long, String> clusters) {
this.clusters = clusters;
}

public Long getLaunchNumber() {
return launchNumber;
}

public void setLaunchNumber(Long launchNumber) {
this.launchNumber = launchNumber;
}
}

0 comments on commit 2ebbf09

Please sign in to comment.