Skip to content

Commit

Permalink
Merge pull request google#572 from vmarmol/no-cgroup
Browse files Browse the repository at this point in the history
Don't fail if the raw cgroup factory fails to register.
  • Loading branch information
vmarmol committed Mar 10, 2015
2 parents 963d981 + c593620 commit 770eae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func New(memoryStorage *memory.InMemoryStorage, sysfs sysfs.SysFs) (Manager, err
// Register the raw driver.
err = raw.Register(newManager)
if err != nil {
return nil, fmt.Errorf("registration of the raw container factory failed: %v", err)
glog.Errorf("Registration of the raw container factory failed: %v", err)
}

return newManager, nil
Expand Down

0 comments on commit 770eae1

Please sign in to comment.