www: remove dynamic scheduler feature flag: enableProfiling (#29996)

I removed the wrong feature flag in #29995, this is the correct one to
match D58682445.
This commit is contained in:
Jan Kassens
2024-06-21 09:51:46 -04:00
committed by GitHub
parent 6fb39ec9e9
commit 0b724e9e9c
2 changed files with 1 additions and 6 deletions
@@ -11,8 +11,6 @@
// Use __VARIANT__ to simulate a GK. The tests will be run twice: once
// with the __VARIANT__ set to `true`, and once set to `false`.
export const enableProfiling = __VARIANT__;
export const userBlockingPriorityTimeout = 250;
export const normalPriorityTimeout = 5000;
export const lowPriorityTimeout = 10000;
@@ -10,8 +10,6 @@
// $FlowFixMe[cannot-resolve-module]
const dynamicFeatureFlags = require('SchedulerFeatureFlags');
const {enableProfiling: enableProfilingFeatureFlag} = dynamicFeatureFlags;
export const {
userBlockingPriorityTimeout,
normalPriorityTimeout,
@@ -20,5 +18,4 @@ export const {
export const frameYieldMs = 10;
export const enableSchedulerDebugging = true;
export const enableProfiling: boolean =
__PROFILE__ && enableProfilingFeatureFlag;
export const enableProfiling = __DEV__;