Skip to content

Commit

Permalink
feat(gatsby): bump opt-in % to dev-ssr to 20% (#29075)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
KyleAMathews committed Jan 18, 2021
1 parent 2439b44 commit a1921b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby/src/utils/flags.ts
Expand Up @@ -95,7 +95,7 @@ const activeFlags: Array<IFlag> = [
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.`,
umbrellaIssue: `https://gatsby.dev/dev-ssr-feedback`,
testFitness: (): fitnessEnum => {
if (sampleSiteForExperiment(`DEV_SSR`, 5)) {
if (sampleSiteForExperiment(`DEV_SSR`, 20)) {
return `OPT_IN`
} else {
return true
Expand Down

0 comments on commit a1921b5

Please sign in to comment.