Don't fail startup if OOM watching failed.

Fixes #527.
This commit is contained in:
Victor Marmol 2015-02-23 11:48:47 -08:00
parent c388ea0a09
commit 1a3c40a1d3

View File

@ -177,7 +177,7 @@ func (self *manager) Start() error {
self.quitChannels = append(self.quitChannels, quitWatcher)
err = self.watchForNewOoms()
if err != nil {
return err
glog.Errorf("Failed to start OOM watcher, will not get OOM events: %v", err)
}
// Look for new containers in the main housekeeping thread.