Skip to content
Closed
Changes from 1 commit
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
Next Next commit
add paused field in ContainerInspectResponse
  • Loading branch information
ydubreuil committed Jun 16, 2014
commit 0c365abb70fa57dfb449d0ae59ab1b3b1f9a917e
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ public class ContainerState {

@JsonProperty("Running") public boolean running;
@JsonProperty("Pid") public int pid;
@JsonProperty("Paused") public boolean paused;
@JsonProperty("ExitCode") public int exitCode;
@JsonProperty("StartedAt") public String startedAt;
@JsonProperty("Ghost") public boolean ghost;
Expand All @@ -259,6 +260,7 @@ public String toString() {
return "ContainerState{" +
"running=" + running +
", pid=" + pid +
", paused=" + paused +
", exitCode=" + exitCode +
", startedAt='" + startedAt + '\'' +
", ghost=" + ghost +
Expand Down