Skip to content

Commit a9f9838

Browse files
authored
Merge pull request docker-java#928 from albestia/3.0.x
INFRA Add getPid to InspectExecCmd
2 parents 141d674 + 5a0ea17 commit a9f9838

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ public class InspectExecResponse {
3737
@JsonProperty("ExitCode")
3838
private Integer exitCode;
3939

40+
@JsonProperty("Pid")
41+
private Integer pid;
42+
4043
@JsonProperty("ProcessConfig")
4144
private ProcessConfig processConfig;
4245

@@ -63,6 +66,10 @@ public String getId() {
6366
return id;
6467
}
6568

69+
public Integer getPid() {
70+
return pid;
71+
}
72+
6673
public Boolean isOpenStdin() {
6774
return openStdin;
6875
}

0 commit comments

Comments
 (0)