Adding exec remote API documentation along with minor code cleanup.

Docker-DCO-1.1-Signed-off-by: Vishnu Kannan <vishnuk@google.com> (github: vishh)
Upstream-commit: 021ecb1d1355e8291a5a872c761a1e367072e308
Component: engine
This commit is contained in:
Vishnu Kannan
2014-09-17 18:36:51 +00:00
parent 29f6884031
commit 1dd6380138
7 changed files with 126 additions and 11 deletions

View File

@ -78,7 +78,7 @@ func (d *Daemon) getExecConfig(name string) (*execConfig, error) {
return execConfig, nil
}
return nil, fmt.Errorf("No exec '%s' in found in daemon", name)
return nil, fmt.Errorf("No such exec instance '%s' found in daemon", name)
}
func (d *Daemon) unregisterExecCommand(execConfig *execConfig) {