-
Notifications
You must be signed in to change notification settings - Fork 44
fix(core): fix websockets #1229
fix(core): fix websockets #1229
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Claude finished @NathanFlurry's task —— View job PR Review: fix(core): fix websocketsReviewing this websocket fix PR and providing feedback on code quality, potential bugs, performance, security, and test coverage. Todo List:
Changes Summary:File 1:
File 2:
Review Feedback✅ Code Quality & Best Practices
|
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
e324556
into
09-14-chore_core_remove_manager_driver
|
|
||
| // GET / | ||
| router.get("/", (c) => { | ||
| router.get("/", cors, (c) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent CORS middleware application. The root route handler manually applies CORS middleware, but this creates inconsistent behavior since CORS is already applied globally in the proxy middleware. This could lead to duplicate CORS headers or conflicts. Remove the manual 'cors' parameter from this route handler.
| router.get("/", cors, (c) => { | |
| router.get("/", (c) => { |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
* fix(inspector): make inspector work again * fix(core): fix websockets --------- Co-authored-by: Kacper Wojciechowski <39823706+jog1t@users.noreply.github.com>
* chore(core): remove manager driver * fix(inspector): make inspector work again (#1228) * fix(core): fix websockets (#1229) * fix(inspector): make inspector work again * fix(core): fix websockets --------- Co-authored-by: Kacper Wojciechowski <39823706+jog1t@users.noreply.github.com> --------- Co-authored-by: Kacper Wojciechowski <39823706+jog1t@users.noreply.github.com>

No description provided.