Skip to content

Commit

Permalink
Disable warmup logic by default
Browse files Browse the repository at this point in the history
It's still pretty experimental and probably shouldn't
be on by default yet.
  • Loading branch information
ajbouh committed Jul 22, 2016
1 parent 4f2727b commit 39199a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qa/cmd/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 39199a4

Please sign in to comment.