-
Notifications
You must be signed in to change notification settings - Fork 131
docs: use correct port in examples #3306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: use correct port in examples #3306
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
PR Review: Use Correct Port in ExamplesSummaryThis PR updates port references in example files from 8080 to 6420 and adds a getActorHibernationConfig implementation. Overall, the changes are mostly correct but there are some critical inconsistencies that need to be addressed. Critical Issues1. Port Mismatch in Server Configuration FilesSeveral server files are listening on port 8080 but logging messages claim they are listening on port 6420:
Impact: Servers actually listen on port 8080, but log messages claim port 6420, and client code now tries to connect to port 6420. Result: Connections will fail. Fix Required: Change .listen(8080) to .listen(6420) in all these files. Code Quality Issues2. Incomplete Function Signaturerivetkit-typescript/packages/rivetkit/src/drivers/engine/actor-driver.ts:110-115 The new getActorHibernationConfig function signature does not match the expected interface from runner/src/mod.ts which expects 3 parameters: (actorId: string, requestId: ArrayBuffer, request: Request) Issues:
Recommendations:
Testing Concerns3. Missing Test Coverage
Recommendation: Add integration tests to verify examples work with the new port Positive Aspects
Security & PerformanceNo security issues or performance concerns identified. Recommendations SummaryMust Fix (Blocking):
Should Fix (Non-blocking):
Nice to Have:
Verdict |
Graphite Automations"Test" took an action on this PR • (11/03/25)1 assignee was added to this PR based on Kacper Wojciechowski's automation. |

No description provided.