UX Changes for Default Partition Key A/B Experiment (#928)

This commit is contained in:
t-tarabhatia
2021-07-14 12:10:45 -07:00
committed by GitHub
parent 8d6ccf8356
commit 887618e77e
4 changed files with 26 additions and 1 deletions

View File

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