Change rollout detection to account for changes in proportion preserving rolled out users

This commit is contained in:
Alasdair Smith 2017-10-11 14:47:39 +01:00
parent 550e7d75ca
commit 5047213c3c

View file

@ -257,7 +257,8 @@ module.exports = ProjectController =
timestamp = parseInt(user_id.toString().substring(0, 8), 16)
counter = parseInt(user_id.toString().substring(18, 24), 16)
if counter % 5000 != 0
rolloutProportion = 10
if counter % 1000 < rolloutProportion
# Don't show if user is not part of roll out
return cb(null, false)
userSignupDate = new Date(timestamp * 1000)