Frontmatter
| id | 8209 |
| title | Fix silent failure in Neural Link ConnectionService startup |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Dec 30, 2025, 10:17 AM |
| updatedAt | Dec 30, 2025, 10:23 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8209 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8169 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 30, 2025, 10:23 AM |
Fix silent failure in Neural Link ConnectionService startup
tobiu added parent issue #8169 on Dec 30, 2025, 10:18 AM

tobiu
Dec 30, 2025, 10:21 AM
Input from Gemini:
✦ I have fixed the silent failure in
ConnectionServicestartup. Code changes:
ConnectionService.startServeris now async and waits forlistening.- It rejects if
EADDRINUSEoccurs.- Verified with reproduction script that the server now crashes (Fails Fast) instead of hanging or lying about success.
This completes ticket #8209. Next steps: Implement the Bridge Architecture (#8210).
tobiu assigned to @tobiu on Dec 30, 2025, 10:22 AM
tobiu closed this issue on Dec 30, 2025, 10:23 AM
Refactor
ConnectionService.startServer()to return aPromise. The promise must:listeningevent fires.errorevent fires (e.g.,EADDRINUSE).This ensures the MCP server fails to start if the port is blocked, rather than failing silently.