You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Logic for checking if you are in an experiment: In Experiment(foo) =HASH>=min and < max.
Probable Bug : We expect to get HASH from CryptoUtils, which apparently is always returning 0 as hash value, so users always fall under AlwaysDisplayTestExplorer - control group.
In the code, parseInt is being used incorrectly. Pass a second parameter, 16 to it instead of passing undefined, so it correctly parses hex encoded string to int.
The text was updated successfully, but these errors were encountered:
Almost all users seem to fall under control group with current experimental setup.
Logic for checking if you are in an experiment: In Experiment(foo) =
HASH
>=min and < max.Probable Bug : We expect to get
HASH
fromCryptoUtils
, which apparently is always returning0
as hash value, so users always fall underAlwaysDisplayTestExplorer - control
group.In the code,
parseInt
is being used incorrectly. Pass a second parameter,16
to it instead of passingundefined
, so it correctly parseshex
encoded string to int.The text was updated successfully, but these errors were encountered: