Remove Explorer.setFeaturesFromFlights (#801)

This commit is contained in:
Steve Faulkner
2021-05-19 18:58:44 -05:00
committed by GitHub
parent ac753b0780
commit 735a81db47
8 changed files with 14 additions and 30 deletions

View File

@@ -9,6 +9,7 @@ export type Features = {
readonly enableRightPanelV2: boolean;
readonly enableSchema: boolean;
enableSchemaAnalyzer: boolean;
autoscaleDefault: boolean;
readonly enableSDKoperations: boolean;
readonly enableSpark: boolean;
readonly enableTtl: boolean;
@@ -68,5 +69,6 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear
pr: get("pr"),
showMinRUSurvey: "true" === get("showminrusurvey"),
ttl90Days: "true" === get("ttl90days"),
autoscaleDefault: "true" === get("autoscaledefault"),
};
}