-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27066 from guardian/sndrs/remove-adapted-site-test
- Loading branch information
Showing
2 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -186,4 +186,14 @@ trait PerformanceSwitches { | |
sellByDate = never, | ||
exposeClientSide = false, | ||
) | ||
|
||
val AdaptiveSite = Switch( | ||
SwitchGroup.Performance, | ||
"adaptive-site", | ||
"If switched on, the site will run a pared-back set of features on poorly-performing page views.", | ||
owners = Seq(Owner.withGithub("[email protected]")), | ||
safeState = On, | ||
sellByDate = never, | ||
exposeClientSide = true, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ import java.time.LocalDate | |
object ActiveExperiments extends ExperimentsDefinition { | ||
override val allExperiments: Set[Experiment] = | ||
Set( | ||
AdaptiveSite, | ||
CommercialMegaTest, | ||
DCRTagPages, | ||
UpdatedHeaderDesign, | ||
|
@@ -29,15 +28,6 @@ object CommercialMegaTest | |
participationGroup = Perc5A, | ||
) | ||
|
||
object AdaptiveSite | ||
extends Experiment( | ||
name = "adaptive-site", | ||
description = "Enables serving an adaptive version of the site that responds to page performance", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
sellByDate = LocalDate.of(2024, 5, 2), | ||
participationGroup = Perc1A, | ||
) | ||
|
||
object DCRTagPages | ||
extends Experiment( | ||
name = "dcr-tag-pages", | ||
|