If I convert from a rollout rule to an experiment ...
# announcements
b
If I convert from a rollout rule to an experiment rule, will the groups of users be the same?
As in, the 50% it was enabled for before, will get variation 1 now?
It does appear that it'll be the same. The coverage hash is:
n = hash(hashValue + featureKey);
The experiment hash is:
n = hash(hashValue + experiment.key);
Assuming
experiment.key
is the same as the feature key
f
correct
b
Perfect, thank you for confirming 🙂