Move raw_exec enabled into the DevMode config block

This commit is contained in:
Chris Bednarski
2015-12-10 15:24:21 -08:00
parent 1821db757b
commit 5bf8a1fff6
2 changed files with 3 additions and 5 deletions

View File

@@ -257,6 +257,9 @@ func DevConfig() *Config {
} else if runtime.GOOS == "linux" {
conf.Client.NetworkInterface = "lo"
}
conf.Client.Options = map[string]string{
"driver.raw_exec.enable": "true",
}
return conf
}