claude-evolve 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -222,11 +222,8 @@ check_stuck_candidates
|
|
|
222
222
|
set +e # Don't exit on error in the main loop
|
|
223
223
|
|
|
224
224
|
while true; do
|
|
225
|
-
#
|
|
226
|
-
|
|
227
|
-
echo "[ERROR] Too many consecutive failures ($consecutive_failures). Stopping." >&2
|
|
228
|
-
break
|
|
229
|
-
fi
|
|
225
|
+
# In parallel mode, let individual algorithm failures happen
|
|
226
|
+
# The generation is finite, so worst case it just completes with many failures
|
|
230
227
|
|
|
231
228
|
# Check if rate limit was hit
|
|
232
229
|
if [[ $rate_limit_hit == true ]]; then
|