1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-28 17:55:15 +02:00

chore: allow streaming variant override

This commit is contained in:
kwasniew 2025-09-03 10:40:40 +02:00
parent 9ef81be488
commit 27b43a663e
No known key found for this signature in database
GPG Key ID: 43A7CBC24C119560

View File

@ -218,10 +218,13 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_SHOW_USER_DEVICE_COUNT, process.env.UNLEASH_EXPERIMENTAL_SHOW_USER_DEVICE_COUNT,
false, false,
), ),
streaming: parseEnvVarBoolean( streaming: {
process.env.UNLEASH_EXPERIMENTAL_STREAMING, name: 'streaming',
false, enabled: parseEnvVarBoolean(
), process.env.UNLEASH_EXPERIMENTAL_STREAMING,
false,
),
},
etagVariant: { etagVariant: {
name: 'disabled', name: 'disabled',
feature_enabled: false, feature_enabled: false,