Fix rebase conflicts from master

This commit is contained in:
Michael Crosby
2013-10-02 13:58:43 -07:00
parent 19c53c3833
commit e245abcc4d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -985,7 +985,7 @@ func TestPostContainersAttachStderr(t *testing.T) {
srv := &Server{runtime: runtime}
container, err := runtime.Create(
container, _, err := runtime.Create(
&Config{
Image: GetTestImage(runtime).ID,
Cmd: []string{"/bin/sh", "-c", "/bin/cat >&2"},
+1 -1
View File
@@ -176,7 +176,7 @@ func (runtime *Runtime) Register(container *Container) error {
} else if !nomonitor {
hostConfig, _ := container.ReadHostConfig()
container.allocateNetwork(hostConfig)
go container.monitor()
go container.monitor(hostConfig)
}
return nil
}