somratpro Claude Haiku 4.5 commited on
Commit
3ea6622
Β·
1 Parent(s): 009eec2

Revert --stack-size=65536; stack overflow was harmless

Browse files

With larger stack, recovery code completes and triggers a crash in
Paperclip's issue-graph traversal result handling (exit code 1).
The RangeError was caught internally and the app continued fine.
Reverting lets the stack overflow remain caught-and-logged, which
is the working state.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>

Files changed (1) hide show
  1. start.sh +1 -1
start.sh CHANGED
@@ -214,7 +214,7 @@ trap cleanup SIGTERM SIGINT
214
 
215
  # ── Launch Paperclip ──────────────────────────────────────────────────────────
216
  echo "Starting Paperclip..."
217
- node --stack-size=65536 --import ./server/node_modules/tsx/dist/loader.mjs server/dist/index.js &
218
  PAPERCLIP_PID=$!
219
 
220
  # Wait for API ready (max 90s)
 
214
 
215
  # ── Launch Paperclip ──────────────────────────────────────────────────────────
216
  echo "Starting Paperclip..."
217
+ node --import ./server/node_modules/tsx/dist/loader.mjs server/dist/index.js &
218
  PAPERCLIP_PID=$!
219
 
220
  # Wait for API ready (max 90s)