Hi Team, We're debugging an issue at the moment wh...
# ask-questions
b
Hi Team, We're debugging an issue at the moment where we've seen unbalanced assignments across multiple experiments (e.g. all users assigned to control in Experiment 1 are also assigned to control in Experiment 2). We've narrowed this down to an issue with the experiment seed used by the SDK in the following function:
Copy code
val hash = GBUtils.hash(
            stringValue = hashValue,
            hashVersion = experiment.hashVersion ?: 1,
            seed = experiment.seed ?: experiment.key
        )
The experiment seeds provided by the Growthbook server to the SDK are not unique per experiment key, which is leading to a non-random allocation of users in an experiment. Is this a known bug / is there a fix for this?
👀 1