diff --git a/src/lib/features/playground/feature-evaluator/strategy/flexible-rollout-strategy.ts b/src/lib/features/playground/feature-evaluator/strategy/flexible-rollout-strategy.ts index 2d2a0da799..ad48ddb13c 100644 --- a/src/lib/features/playground/feature-evaluator/strategy/flexible-rollout-strategy.ts +++ b/src/lib/features/playground/feature-evaluator/strategy/flexible-rollout-strategy.ts @@ -10,7 +10,7 @@ const STICKINESS = { export default class FlexibleRolloutStrategy extends Strategy { private randomGenerator: Function = () => - `${Math.round(Math.random() * 100) + 1}`; + `${Math.round(Math.random() * 10_000) + 1}`; constructor(radnomGenerator?: Function) { super('flexibleRollout');