From 39199a43df60bfd58ae55455de96b0cdcc5b8e1d Mon Sep 17 00:00:00 2001 From: Adam Bouhenguel Date: Fri, 22 Jul 2016 14:25:35 -0700 Subject: [PATCH] Disable warmup logic by default It's still pretty experimental and probably shouldn't be on by default yet. --- src/qa/cmd/run/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qa/cmd/run/run.go b/src/qa/cmd/run/run.go index 8a42531..6419274 100644 --- a/src/qa/cmd/run/run.go +++ b/src/qa/cmd/run/run.go @@ -77,7 +77,7 @@ func Main(env *cmd.Env, args []string) error { evalAfterFork := flags.String("eval-after-fork", "", "Execute the given code after a work forks, but before work begins") sampleStack := flags.Bool("sample-stack", false, "Enable stack sampling") - warmup := flags.Bool("warmup", true, "Try to warm up various worker caches") + warmup := flags.Bool("warmup", false, "Use a variety of experimental heuristics to warm up worker caches") err := flags.Parse(args) if err != nil {