We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a4fcc6 commit cf67123Copy full SHA for cf67123
core-api/src/main/java/com/optimizely/ab/config/DatafileProjectConfig.java
@@ -375,7 +375,9 @@ private List<Experiment> injectFeatureRolloutVariations(
375
return allExperiments;
376
}
377
378
- // Build rollout ID to Rollout mapping
+ // Build rollout ID to Rollout mapping.
379
+ // [NOTE] we cannot use the rolloutIdMapping here because it is built after we
380
+ // inject the variations, which causes a circular dependency.
381
Map<String, Rollout> rolloutMap = new HashMap<>();
382
if (rollouts != null) {
383
for (Rollout rollout : rollouts) {
0 commit comments