Chore: Adding backend platform squad owned feature toggles (#64351)

Adding backend platform squad owned feature toggles
This commit is contained in:
Timur Olzhabayev 2023-03-08 06:57:50 +01:00 committed by GitHub
parent 70f600db10
commit 05191d083d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -111,6 +111,7 @@ var (
Name: "migrationLocking", Name: "migrationLocking",
Description: "Lock database during migrations", Description: "Lock database during migrations",
State: FeatureStateBeta, State: FeatureStateBeta,
Owner: grafanaBackendPlatformSquad,
}, },
{ {
Name: "storage", Name: "storage",
@ -294,6 +295,7 @@ var (
Name: "mysqlAnsiQuotes", Name: "mysqlAnsiQuotes",
Description: "Use double quotes to escape keyword in a MySQL query", Description: "Use double quotes to escape keyword in a MySQL query",
State: FeatureStateAlpha, State: FeatureStateAlpha,
Owner: grafanaBackendPlatformSquad,
}, },
{ {
Name: "accessControlOnCall", Name: "accessControlOnCall",
@ -305,6 +307,7 @@ var (
Description: "Enable folder nesting", Description: "Enable folder nesting",
State: FeatureStateAlpha, State: FeatureStateAlpha,
RequiresDevMode: true, RequiresDevMode: true,
Owner: grafanaBackendPlatformSquad,
}, },
{ {
Name: "accessTokenExpirationCheck", Name: "accessTokenExpirationCheck",

View File

@ -49,7 +49,6 @@ func TestFeatureToggleFiles(t *testing.T) {
"prometheusAzureOverrideAudience": true, "prometheusAzureOverrideAudience": true,
"lokiDataframeApi": true, "lokiDataframeApi": true,
"featureHighlights": true, "featureHighlights": true,
"migrationLocking": true,
"exploreMixedDatasource": true, "exploreMixedDatasource": true,
"tracing": true, "tracing": true,
"newTraceView": true, "newTraceView": true,
@ -66,9 +65,7 @@ func TestFeatureToggleFiles(t *testing.T) {
"athenaAsyncQueryDataSupport": true, "athenaAsyncQueryDataSupport": true,
"newPanelChromeUI": true, "newPanelChromeUI": true,
"showDashboardValidationWarnings": true, "showDashboardValidationWarnings": true,
"mysqlAnsiQuotes": true,
"accessControlOnCall": true, "accessControlOnCall": true,
"nestedFolders": true,
"accessTokenExpirationCheck": true, "accessTokenExpirationCheck": true,
"elasticsearchBackendMigration": true, "elasticsearchBackendMigration": true,
"datasourceOnboarding": true, "datasourceOnboarding": true,