mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #4077 from overleaf/jpa-pdf-caching-split-test-config
[misc] add disabled split test config for pdf caching GitOrigin-RevId: 2a10c56b0ca62fa3f6ab2702ebde91cebe8f953e
This commit is contained in:
parent
f0b3d8a26a
commit
da782bdcfa
1 changed files with 28 additions and 0 deletions
|
@ -343,6 +343,34 @@ module.exports = {
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'enable_pdf_caching',
|
||||
active: process.env.SPLIT_TEST_ENABLE_PDF_CACHING_ACTIVE === 'true',
|
||||
variants: [
|
||||
{
|
||||
id: 'enabled',
|
||||
rolloutPercent: parseInt(
|
||||
process.env.SPLIT_TEST_ENABLE_PDF_CACHING_ENABLE_ROLLOUT_PERCENT ||
|
||||
'0',
|
||||
10
|
||||
),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'track_pdf_download',
|
||||
active: process.env.SPLIT_TEST_TRACK_PDF_DOWNLOAD_ACTIVE === 'true',
|
||||
variants: [
|
||||
{
|
||||
id: 'enabled',
|
||||
rolloutPercent: parseInt(
|
||||
process.env.SPLIT_TEST_TRACK_PDF_DOWNLOAD_ENABLE_ROLLOUT_PERCENT ||
|
||||
'0',
|
||||
10
|
||||
),
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// cdn:
|
||||
|
|
Loading…
Reference in a new issue