1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-05 17:53:12 +02:00

chore: allow streaming variant override (#10603)

This commit is contained in:
Mateusz Kwasniewski 2025-09-03 10:51:16 +02:00 committed by GitHub
parent d5f834e851
commit 277326c952
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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