You’ve got a circular reference error: ini Copy Edit [dopey] weight = ${bashful/weight} [bashful] weight = ${dopey/weight} Those two point to each other, causing infinite recursion. ✅ Fix: Break the cycle by referencing a concrete value, e.g.: ini Copy Edit [dopey] weight = ${doc/weight} [bashful] weight = ${doc/weight} Or detect and reject circular refs in code.
You’ve got a circular reference error: ini Copy Edit [dopey] weight = ${bashful/weight} [bashful] weight = ${dopey/weight} Those two point to each other, causing infinite recursion. ✅ Fix: Break the cycle by referencing a concrete value, e.g.: ini Copy Edit [dopey] weight = ${doc/weight} [bashful] weight = ${doc/weight} Or detect and reject circular refs in code.