Skip to content

fix(startup): use process.exit(1) for NODE_ENV validation, not throw#174

Open
6figpsolseeker wants to merge 1 commit intodcccrypto:mainfrom
6figpsolseeker:fix/node-env-exit-consistency
Open

fix(startup): use process.exit(1) for NODE_ENV validation, not throw#174
6figpsolseeker wants to merge 1 commit intodcccrypto:mainfrom
6figpsolseeker:fix/node-env-exit-consistency

Conversation

@6figpsolseeker
Copy link
Copy Markdown

Summary

  • NODE_ENV validation at startup used throw new Error(...) while every other env-var check in the same file (SUPABASE_URL, SUPABASE_KEY, API_AUTH_KEY, API_PORT, DB connectivity) uses process.exit(1) after structured logging.
  • The throw produces an uncaught exception with a noisy stack trace instead of the clean log-and-exit pattern, confusing operators when NODE_ENV is misconfigured.
  • 1-line change: throw new Error(...)process.exit(1). The structured error log on the preceding line already captures all diagnostic context.

Test plan

  • npx tsc --noEmit — clean
  • Full suite: 188/189 passing (the 1 failure is a pre-existing tests/routes/prices.test.ts issue on main, unrelated)

NODE_ENV validation at startup used `throw new Error(...)` while every
other env-var check in the same file (SUPABASE_URL, SUPABASE_KEY,
API_AUTH_KEY, API_PORT, DB connectivity) uses `process.exit(1)` after
logging. The throw produces an uncaught exception with a stack trace
instead of the clean structured-log + exit pattern the rest of the
startup sequence follows, confusing ops when NODE_ENV is misconfigured.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Apr 9, 2026

Warning

Rate limit exceeded

@6figpsolseeker has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 14 minutes and 20 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 14 minutes and 20 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: eff967a2-86a8-49c5-8f7d-8451ff1a0439

📥 Commits

Reviewing files that changed from the base of the PR and between 9abea9f and 648467d.

📒 Files selected for processing (1)
  • src/index.ts
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant