Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public class InspectExecResponse {
@JsonProperty("ExitCode")
private Integer exitCode;

@JsonProperty("Pid")
private Integer pid;

@JsonProperty("ProcessConfig")
private ProcessConfig processConfig;

Expand All @@ -63,6 +66,10 @@ public String getId() {
return id;
}

public Integer getPid() {
return pid;
}

public Boolean isOpenStdin() {
return openStdin;
}
Expand Down