Skip to content

Commit 660ee6e

Browse files
authored
Merge pull request docker-java#1152 from BertschiAG/fix-parse-error
! [api/healthcheck] startPeriod is now a long
2 parents b2dc629 + a2df1fc commit 660ee6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/github/dockerjava/api/model/HealthCheck.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class HealthCheck implements Serializable {
5656
* @since 1.26
5757
*/
5858
@JsonProperty("StartPeriod")
59-
private Integer startPeriod;
59+
private Long startPeriod;
6060

6161
public Long getInterval() {
6262
return interval;
@@ -94,11 +94,11 @@ public HealthCheck withRetries(Integer retries) {
9494
return this;
9595
}
9696

97-
public Integer getStartPeriod() {
97+
public Long getStartPeriod() {
9898
return startPeriod;
9999
}
100100

101-
public HealthCheck withStartPeriod(Integer startPeriod) {
101+
public HealthCheck withStartPeriod(Long startPeriod) {
102102
this.startPeriod = startPeriod;
103103
return this;
104104
}

0 commit comments

Comments
 (0)