Fix container wait error message to match server template for returning 404

Addresses #8107

Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
Upstream-commit: be6bce6ab8bd0e3a7bd175d3fbe3f6e4fab6b02b
Component: engine
This commit is contained in:
Phil Estes
2014-09-19 13:33:00 -04:00
parent cbc12688b3
commit 6c408956c3

View File

@ -16,5 +16,5 @@ func (daemon *Daemon) ContainerWait(job *engine.Job) engine.Status {
job.Printf("%d\n", status)
return engine.StatusOK
}
return job.Errorf("%s: no such container: %s", job.Name, name)
return job.Errorf("%s: No such container: %s", job.Name, name)
}