Skip to content

Commit bcfcb47

Browse files
committed
Added missing ExitCode field
1 parent ec8f1f9 commit bcfcb47

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/main/java/com/github/dockerjava/api/command/InspectExecResponse.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ public class InspectExecResponse {
2323
@JsonProperty("Running")
2424
private boolean running;
2525

26+
@JsonProperty("ExitCode")
27+
private int exitCode;
28+
2629
public String getId() {
2730
return id;
2831
}
@@ -43,6 +46,10 @@ public boolean isRunning() {
4346
return running;
4447
}
4548

49+
public int getExitCode() {
50+
return exitCode;
51+
}
52+
4653
@Override
4754
public String toString() {
4855
return ToStringBuilder.reflectionToString(this);

0 commit comments

Comments
 (0)