Remove oom flag on daemon

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2016-03-01 11:17:29 -08:00
parent 17dc3f649c
commit 7cbe3e759d
3 changed files with 3 additions and 8 deletions

View file

@ -18,7 +18,7 @@ const (
)
// New returns an initialized Process supervisor.
func New(stateDir string, oom bool, runtimeName string) (*Supervisor, error) {
func New(stateDir string, runtimeName string) (*Supervisor, error) {
startTasks := make(chan *startTask, 10)
if err := os.MkdirAll(stateDir, 0755); err != nil {
return nil, err