Skip to content

Commit 39199a4

Browse files
committed
Disable warmup logic by default
It's still pretty experimental and probably shouldn't be on by default yet.
1 parent 4f2727b commit 39199a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qa/cmd/run/run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func Main(env *cmd.Env, args []string) error {
7777
evalAfterFork := flags.String("eval-after-fork", "", "Execute the given code after a work forks, but before work begins")
7878
sampleStack := flags.Bool("sample-stack", false, "Enable stack sampling")
7979

80-
warmup := flags.Bool("warmup", true, "Try to warm up various worker caches")
80+
warmup := flags.Bool("warmup", false, "Use a variety of experimental heuristics to warm up worker caches")
8181

8282
err := flags.Parse(args)
8383
if err != nil {

0 commit comments

Comments
 (0)