Merge pull request #64 from sharelatex/as-1-pc-rollout

Rollout autocompile to 1% of users
This commit is contained in:
Alasdair Smith 2017-10-18 10:28:40 +01:00 committed by GitHub
commit 672f944e7c

View file

@ -257,8 +257,8 @@ module.exports = ProjectController =
timestamp = parseInt(user_id.toString().substring(0, 8), 16)
counter = parseInt(user_id.toString().substring(18, 24), 16)
rolloutProportion = 0
if counter % 1000 >= rolloutProportion
rolloutPercentage = 1 # Percentage of users to roll out to
if counter % 100 > rolloutPercentage
# Don't show if user is not part of roll out
return cb(null, false)
userSignupDate = new Date(timestamp * 1000)