Fix assignment error in haste.

This commit is contained in:
Satnam Singh 2014-09-24 10:29:04 -07:00
parent 1a9d2298dc
commit 833feae28b

View File

@ -423,7 +423,7 @@ func (self *manager) watchForNewContainers(quit chan error) error {
} }
// There is a race between starting the watch and new container creation so we do a detection before we read new containers. // There is a race between starting the watch and new container creation so we do a detection before we read new containers.
err := self.detectSubcontainers("/") err = self.detectSubcontainers("/")
if err != nil { if err != nil {
return err return err
} }