Fix main()
This commit is contained in:
parent
d3f074494a
commit
5c42b2b512
1 changed files with 2 additions and 2 deletions
|
@ -86,8 +86,8 @@ func main() {
|
|||
log.Fatal(err)
|
||||
}
|
||||
// Serve api
|
||||
job := eng.Job("serveapi", flHosts...)
|
||||
job.Setenv("Logging", true)
|
||||
job = eng.Job("serveapi", flHosts...)
|
||||
job.SetenvBool("Logging", true)
|
||||
if err := job.Run(); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue