feat(site): remove experiment deployment_health_page (#11572)

This commit is contained in:
Cian Johnston
2024-01-11 21:03:10 +00:00
committed by GitHub
parent 26f5ce63a8
commit 95fd0bb22b
11 changed files with 28 additions and 42 deletions

View File

@ -2076,20 +2076,15 @@ func (c *Client) BuildInfo(ctx context.Context) (BuildInfoResponse, error) {
type Experiment string
const (
// Deployment health page
ExperimentDeploymentHealthPage Experiment = "deployment_health_page"
// Add new experiments here!
// ExperimentExample Experiment = "example"
ExperimentExample Experiment = "example" // This isn't used for anything.
)
// ExperimentsAll should include all experiments that are safe for
// users to opt-in to via --experimental='*'.
// Experiments that are not ready for consumption by all users should
// not be included here and will be essentially hidden.
var ExperimentsAll = Experiments{
ExperimentDeploymentHealthPage,
}
var ExperimentsAll = Experiments{}
// Experiments is a list of experiments.
// Multiple experiments may be enabled at the same time.