Remove throughput bucketing feature registration check (#2604)

Derive throughput bucket availability in container settings from the supported AAD ARM path, and remove obsolete global and URL feature state.

Co-authored-by: Asier Isayas <[email protected]>
This commit is contained in:
asier-isayas
2026-09-22 08:34:26 -07:00
committed by GitHub
co-authored by Asier Isayas
parent a92669ccbc
commit 575ebd6193
6 changed files with 8 additions and 27 deletions
-2
View File
@@ -16,7 +16,6 @@ export type Features = {
readonly enableAadDataPlane: boolean;
readonly enableResourceGraph: boolean;
readonly enableKoResourceTree: boolean;
readonly enableThroughputBuckets: boolean;
readonly hostedDataExplorer: boolean;
readonly junoEndpoint?: string;
readonly phoenixEndpoint?: string;
@@ -80,7 +79,6 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear
enableSpark: "true" === get("enablespark"),
enableTtl: "true" === get("enablettl"),
enableKoResourceTree: "true" === get("enablekoresourcetree"),
enableThroughputBuckets: "true" === get("enablethroughputbuckets"),
executeSproc: "true" === get("dataexplorerexecutesproc"),
hostedDataExplorer: "true" === get("hosteddataexplorerenabled"),
mongoProxyEndpoint: get("mongoproxyendpoint"),