Skip to content

Commit

Permalink
bugfix: send status as string
Browse files Browse the repository at this point in the history
  • Loading branch information
danoswaltCL committed Sep 20, 2023
1 parent 03c4c67 commit fc6263d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions clientlibs/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
changed in the next comment. that increases the likelihood that two PRs in-flight
at the same time that happen to rev to the same new version will be caught
by a merge conflict. -->
<!-- 3.1.2 -> 3.1.3: revert apache connector, use method workaround -->
<version>3.1.3</version>
<!-- 3.1.3 -> 3.1.4: bugfix: send status as string -->
<version>3.1.4</version>
<build>
<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class MarkExperimentRequest {
private String site;
private String target;
private String condition;
private MarkedDecisionPointStatus status;
private String status;

public MarkExperimentRequest() {}

Expand All @@ -27,7 +27,7 @@ public MarkExperimentRequest(String userId, String site, String target, String c
this.site = site;
this.target = target;
this.condition = condition;
this.status = status;
this.status = status.toString();
}

public String getUserId() {
Expand Down Expand Up @@ -62,11 +62,11 @@ public void setCondition(String condition) {
this.condition = condition;
}

public MarkedDecisionPointStatus getStatus() {
public String getStatus() {
return status;
}

public void setStatus(MarkedDecisionPointStatus status){
this.status = status;
this.status = status.toString();
}
}

0 comments on commit fc6263d

Please sign in to comment.