SSR RPC cache: use the dotted method form so bridge reads reach hivemind - #75
Conversation
|
Warning Review limit reached
Next review available in: 21 minutes Limit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?Wait for the limit to reset, then comment An organization admin can change what happens after included review limits in Billing. How do review limits work?CodeRabbit enforces per-developer PR review limits within each organization. For paid Pro and Pro+ reviews, CodeRabbit uses a developer's included PR review attempts over the past 7 days to set the current hourly allowance. At typical activity levels, the full plan allowance applies. Higher sustained activity can lower the allowance until earlier attempts leave the 7-day window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (3)
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. Comment |
PR Summary by QodoFix SSR RPC cache bridge reads by using dotted JSON-RPC method names
AI Description
Diagram
High-Level Assessment
Files changed (3)
|
PR Summary by QodoSSR RPC cache: use dotted JSON-RPC methods so bridge reads reach hivemind
AI Description
Diagram
High-Level Assessment
Files changed (3)
|
Code Review by Qodo🐞 Bugs (0) 📘 Rule violations (0) 📎 Requirement gaps (0)
Great, no issues found!Qodo reviewed your code and found no material issues that require reviewTip of the day💡 Did you know, you can tweak Display preferences with a live preview to see your comment before it ships |
1 similar comment
Code Review by Qodo🐞 Bugs (0) 📘 Rule violations (0) 📎 Requirement gaps (0)
Great, no issues found!Qodo reviewed your code and found no material issues that require reviewTip of the day💡 Did you know, you can tweak Display preferences with a live preview to see your comment before it ships |
Staging showed the SSR RPC cache failing every
bridge.*read withCould not find API bridgewhilecondenser_api.*reads were hitting. The cache usedHiveRpcClient.Call, whose legacy{"method":"call","params":[api, method, params]}envelope hived resolves only for its own APIs; hivemind'sbridgeis routed by the dotted method name, which is the form the web SDK already sends.HiveRpcClient.CallMethod(qualifiedMethod, params)sends"method":"bridge.get_post"(works for condenser_api too);Callkeeps the legacy envelope for existing callers; both share oneSendloop.SsrRpc.FillusesCallMethodfor every read.Same change as 683b100, which landed on the #74 branch after that PR had merged.