Browse code

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>

Phil Estes authored on 2014/09/20 02:33:00
Showing 1 changed files
... ...
@@ -16,5 +16,5 @@ func (daemon *Daemon) ContainerWait(job *engine.Job) engine.Status {
16 16
 		job.Printf("%d\n", status)
17 17
 		return engine.StatusOK
18 18
 	}
19
-	return job.Errorf("%s: no such container: %s", job.Name, name)
19
+	return job.Errorf("%s: No such container: %s", job.Name, name)
20 20
 }