featureflag: removes unused feature flag (#62983)

Signed-off-by: bergquist <carl.bergquist@gmail.com>
pull/62992/head
Carl Bergquist 2 years ago committed by GitHub
parent 49ccae7489
commit dc64c9d1d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  2. 1
      packages/grafana-data/src/types/featureToggles.gen.ts
  3. 5
      pkg/services/featuremgmt/registry.go
  4. 4
      pkg/services/featuremgmt/toggles_gen.go

@ -83,7 +83,6 @@ Alpha features might be changed or removed without prior notice.
| `flameGraph` | Show the flame graph | | `flameGraph` | Show the flame graph |
| `redshiftAsyncQueryDataSupport` | Enable async query data support for Redshift | | `redshiftAsyncQueryDataSupport` | Enable async query data support for Redshift |
| `athenaAsyncQueryDataSupport` | Enable async query data support for Athena | | `athenaAsyncQueryDataSupport` | Enable async query data support for Athena |
| `increaseInMemDatabaseQueryCache` | Enable more in memory caching for database queries |
| `newPanelChromeUI` | Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu | | `newPanelChromeUI` | Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu |
| `showDashboardValidationWarnings` | Show warnings when dashboards do not validate against the schema | | `showDashboardValidationWarnings` | Show warnings when dashboards do not validate against the schema |
| `mysqlAnsiQuotes` | Use double quotes to escape keyword in a MySQL query | | `mysqlAnsiQuotes` | Use double quotes to escape keyword in a MySQL query |

@ -67,7 +67,6 @@ export interface FeatureToggles {
cloudWatchCrossAccountQuerying?: boolean; cloudWatchCrossAccountQuerying?: boolean;
redshiftAsyncQueryDataSupport?: boolean; redshiftAsyncQueryDataSupport?: boolean;
athenaAsyncQueryDataSupport?: boolean; athenaAsyncQueryDataSupport?: boolean;
increaseInMemDatabaseQueryCache?: boolean;
newPanelChromeUI?: boolean; newPanelChromeUI?: boolean;
queryLibrary?: boolean; queryLibrary?: boolean;
showDashboardValidationWarnings?: boolean; showDashboardValidationWarnings?: boolean;

@ -289,11 +289,6 @@ var (
State: FeatureStateAlpha, State: FeatureStateAlpha,
FrontendOnly: true, FrontendOnly: true,
}, },
{
Name: "increaseInMemDatabaseQueryCache",
Description: "Enable more in memory caching for database queries",
State: FeatureStateAlpha,
},
{ {
Name: "newPanelChromeUI", Name: "newPanelChromeUI",
Description: "Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu", Description: "Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu",

@ -211,10 +211,6 @@ const (
// Enable async query data support for Athena // Enable async query data support for Athena
FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport" FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport"
// FlagIncreaseInMemDatabaseQueryCache
// Enable more in memory caching for database queries
FlagIncreaseInMemDatabaseQueryCache = "increaseInMemDatabaseQueryCache"
// FlagNewPanelChromeUI // FlagNewPanelChromeUI
// Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu // Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu
FlagNewPanelChromeUI = "newPanelChromeUI" FlagNewPanelChromeUI = "newPanelChromeUI"

Loading…
Cancel
Save