diff options
author | Nick White <git@njw.name> | 2020-03-31 16:54:11 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2020-03-31 16:54:11 +0100 |
commit | cb126a80cfa8502a582ee651f9e45c3b0d6f79f7 (patch) | |
tree | 47f474e2c2063a6542f097fae19638bc64cd19a2 /cmd | |
parent | ce660e11c606e123b4ab6c75bd86babe2e5e6a2b (diff) |
Disable autoshutdown by default for bookpipeline, and update to ami 0.11 (which reenables it for spot instances)
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bookpipeline/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bookpipeline/main.go b/cmd/bookpipeline/main.go index dce1586..7b45541 100644 --- a/cmd/bookpipeline/main.go +++ b/cmd/bookpipeline/main.go @@ -675,7 +675,7 @@ func main() { noocr := flag.Bool("no", false, "disable ocr") noocrpg := flag.Bool("nop", false, "disable ocr on individual pages") noanalyse := flag.Bool("na", false, "disable analysis") - autoshutdown := flag.Bool("shutdown", true, "automatically shut down if no work has been available for 5 minutes") + autoshutdown := flag.Bool("shutdown", false, "automatically shut down if no work has been available for 5 minutes") flag.Usage = func() { fmt.Fprintf(flag.CommandLine.Output(), usage) |