Rollout autocompile to 1% of users and improve readability

This commit is contained in:
Alasdair Smith 2017-10-17 15:04:27 +01:00
parent b6c309457c
commit 6ff3a2de9f

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 % 1000 > rolloutPercentage
# Don't show if user is not part of roll out
return cb(null, false)
userSignupDate = new Date(timestamp * 1000)