feat(server): improve server startup error handling#1224
Closed
braden-w wants to merge 1 commit into
Closed
Conversation
Add structured error handling for server startup failures: - Catch Bun.serve() errors and wrap in ServerStartError NamedError - Pass through original Bun error messages (e.g., "Failed to start server. Is port 4096 in use?") - Format errors in FormatError() to display user-friendly messages - Prevents generic "unexpected error" messages for common server startup issues
teamgroove
pushed a commit
to teamgroove/opencode
that referenced
this pull request
Aug 3, 2025
…andling Merged from: anomalyco#1224 Author: @braden-w Auto-merged by opencode-fork integration system
github-actions
Bot
force-pushed
the
dev
branch
from
September 29, 2025 05:53
f16de3d to
cc0d460
Compare
github-actions
Bot
force-pushed
the
dev
branch
from
November 10, 2025 05:43
772b621 to
eb855e1
Compare
github-actions
Bot
force-pushed
the
dev
branch
3 times, most recently
from
November 22, 2025 18:07
f1dc981 to
3e15a39
Compare
github-actions
Bot
force-pushed
the
dev
branch
3 times, most recently
from
November 27, 2025 01:29
f8ee907 to
6a9856d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Previously, when users ran the
opencode servecommand and the default port 4096 was already in use, they would see an unexpected error message:The implementation wraps Bun.serve() calls in try-catch blocks and maps them into
ServerStartErrorerrors using the established NamedError pattern. The original Bun error message (like "Failed to start server. Is port 4096 in use?") is preserved and displayed directly to users via the FormatError system.