Add debugging info printing to etcd fake

And make tests pass again.
This commit is contained in:
Daniel Smith
2014-08-08 13:25:36 -07:00
parent 5cdce0e35a
commit b7752a86d4
5 changed files with 18 additions and 16 deletions

View File

@@ -209,7 +209,7 @@ type PodStatus string
// These are the valid statuses of pods.
const (
// PodWaiting means that we're waiting for the pod to begin running.
PodWaiting = "Waiting"
PodWaiting PodStatus = "Waiting"
// PodRunning means that the pod is up and running.
PodRunning PodStatus = "Running"
// PodTerminated means that the pod has stopped.

View File

@@ -212,7 +212,7 @@ type PodStatus string
// These are the valid statuses of pods.
const (
// PodWaiting means that we're waiting for the pod to begin running.
PodWaiting = "Waiting"
PodWaiting PodStatus = "Waiting"
// PodRunning means that the pod is up and running.
PodRunning PodStatus = "Running"
// PodTerminated means that the pod has stopped.