Skip to content

Commit a1921b5

Browse files
authored
feat(gatsby): bump opt-in % to dev-ssr to 20% (#29075)
The partial rollout this past release has been *mostly* smooth but a few bugs popped up in the umbrella so let's get more testers to ensure we've covered all our bases.
1 parent 2439b44 commit a1921b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/gatsby/src/utils/flags.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const activeFlags: Array<IFlag> = [
9595
description: `Server Side Render (SSR) pages on full reloads during develop. Helps you detect SSR bugs and fix them without needing to do full builds.`,
9696
umbrellaIssue: `https://gatsby.dev/dev-ssr-feedback`,
9797
testFitness: (): fitnessEnum => {
98-
if (sampleSiteForExperiment(`DEV_SSR`, 5)) {
98+
if (sampleSiteForExperiment(`DEV_SSR`, 20)) {
9999
return `OPT_IN`
100100
} else {
101101
return true

0 commit comments

Comments
 (0)