Rollout to 10% of users

This commit is contained in:
Alasdair Smith 2017-10-23 13:14:20 +01:00
parent 624dd26f39
commit 8421f6767a

View file

@ -259,7 +259,7 @@ module.exports = ProjectController =
timestamp = parseInt(user_id.toString().substring(0, 8), 16)
counter = parseInt(user_id.toString().substring(18, 24), 16)
rolloutPercentage = 5 # Percentage of users to roll out to
rolloutPercentage = 10 # 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)