Honour the FX degraded path at the consumer, and bound provider calls (#206) - #219
Merged
Conversation
Honour the FX degraded path at the consumer, and bound provider calls (#206) The S4 seam already exists and is well built: multi-source provider chain, two-tier cache with distinct crypto/fiat freshness policies, promise-coalescing stampede protection, per-provider circuit breakers, a route that returns HTTP 200 with `unavailable: true` rather than an error status, and tests for each. Two things defeated it. 1. The consumer ignored the degraded contract useExpenseForm - the one place that actually creates an expense - did: if (!res.ok) throw ... // dead: the route always returns 200 exchangeRate = data.rate; // null when unavailable finalXlmAmount = finalXlmAmount * parseFloat(exchangeRate); So a provider outage did not block expense creation; it produced NaN and persisted totalAmount: "NaN", with every share NaN too. A silently corrupt record is worse than a blocked submit, and it defeated the invariant the whole seam exists to serve. It also read `data.timestamp`, which the route never returns (it returns `fetchedAt`), so provenance was always undefined, and it never checked `stale` - the "worst failure mode" the issue names. lib/fx/quote.ts is now the shared client-side consumer: returns null for every "cannot price this" condition (transport failure, unavailable, absent / non-numeric / non-positive rate) instead of throwing or producing NaN. On null the form keeps everything the user typed, sets `rateUnavailable`, and tells them to enter XLM directly. A stale quote is used - a slightly old rate beats no expense - but announced with its age. It lives in lib/fx/ rather than the hook because it is pure async logic with no React in it, and any future caller must degrade identically. 2. No call was ever bounded Nothing in the chain had a timeout. A provider that accepts the connection and then never answers hung the whole chain forever and never tripped its breaker, since the breaker only counts outcomes it is told about - so the next request hung too. "Bypassed without repeatedly paying its timeout" was true for errors and false for hangs, which is the more common outage. CircuitBreaker.call now races the provider against `callTimeoutMs` (3 s default) and counts a timeout as a failure, so three hangs open the circuit and it then costs nothing. The timer is always cleared. Tests cover the regression directly (unavailable/malformed/non-positive rate never yields NaN), provenance, stale labelling, and hang -> breaker-open. Note: jest was not run - this checkout has no installed node_modules. The pure logic (describeAge, the rate guard) was extracted and executed under node; that caught a real bug, describeAge(30s) reporting "1 minute" because Math.round overstated freshness. Now floored in all three branches. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> @
🤖 CodeAnt AI — Review Status
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
Comment on lines
+92
to
+97
| const result = await Promise.race([ | ||
| fn(), | ||
| new Promise<typeof TIMED_OUT>((resolve) => { | ||
| timer = setTimeout(() => resolve(TIMED_OUT), this.cfg.callTimeoutMs); | ||
| }), | ||
| ]); |
There was a problem hiding this comment.
Suggestion: Timeout only stops awaiting fn(); the provider promise continues running, retaining network resources after the breaker has already moved to fallback providers. [resource leak]
Assessment: 🟠 Major · 🔁 Occurrence: Sometimes
Prompt for AI Agent 🤖
This is a comment left during a code review.
**Path:** lib/fx/circuitBreaker.ts
**Line:** 92:97
**Comment:**
*Resource Leak: Timeout only stops awaiting `fn()`; the provider promise continues running, retaining network resources after the breaker has already moved to fallback providers.
Validate the correctness of the flagged issue. If correct, How can I resolve this? If you propose a fix, implement it and please make it concise.
Once fix is implemented, also check other comments on the same PR, and ask user if the user wants to fix the rest of the comments as well. if said yes, then fetch all the comments validate the correctness and implement a minimal fix
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.
User description
close #206
The S4 seam already exists and is well built: multi-source provider chain, two-tier cache with distinct crypto/fiat freshness policies, promise-coalescing stampede protection, per-provider circuit breakers, a route that returns HTTP 200 with
unavailable: truerather than an error status, and tests for each.Two things defeated it.
The consumer ignored the degraded contract useExpenseForm - the one place that actually creates an expense - did:
if (!res.ok) throw ... // dead: the route always returns 200
exchangeRate = data.rate; // null when unavailable
finalXlmAmount = finalXlmAmount * parseFloat(exchangeRate);
So a provider outage did not block expense creation; it produced NaN and persisted totalAmount: "NaN", with every share NaN too. A silently corrupt record is worse than a blocked submit, and it defeated the invariant the whole seam exists to serve. It also read
data.timestamp, which the route never returns (it returnsfetchedAt), so provenance was always undefined, and it never checkedstale- the "worst failure mode" the issue names.lib/fx/quote.ts is now the shared client-side consumer: returns null for every "cannot price this" condition (transport failure, unavailable, absent / non-numeric / non-positive rate) instead of throwing or producing NaN. On null the form keeps everything the user typed, sets
rateUnavailable, and tells them to enter XLM directly. A stale quote is used - a slightly old rate beats no expense - but announced with its age.It lives in lib/fx/ rather than the hook because it is pure async logic with no React in it, and any future caller must degrade identically.
No call was ever bounded Nothing in the chain had a timeout. A provider that accepts the connection and then never answers hung the whole chain forever and never tripped its breaker, since the breaker only counts outcomes it is told about - so the next request hung too. "Bypassed without repeatedly paying its timeout" was true for errors and false for hangs, which is the more common outage.
CircuitBreaker.call now races the provider against
callTimeoutMs(3 s default) and counts a timeout as a failure, so three hangs open the circuit and it then costs nothing. The timer is always cleared.Tests cover the regression directly (unavailable/malformed/non-positive rate never yields NaN), provenance, stale labelling, and hang -> breaker-open.
Note: jest was not run - this checkout has no installed node_modules. The pure logic (describeAge, the rate guard) was extracted and executed under node; that caught a real bug, describeAge(30s) reporting "1 minute" because Math.round overstated freshness. Now floored in all three branches.
@
CodeAnt-AI Description
Prevent corrupted expenses when exchange rates are unavailable
What Changed
NaNamounts when an exchange-rate request fails, returns an unusable rate, or reports the rate as unavailableImpact
✅ No corrupted NaN expenses✅ Preserved form data during FX outages✅ Fewer delays from hanging rate providers💡 Usage Guide
Checking Your Pull Request
Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.
Talking to CodeAnt AI
Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:
This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.
Example
Preserve Org Learnings with CodeAnt
You can record team preferences so CodeAnt AI applies them in future reviews. Reply directly to the specific CodeAnt AI suggestion (in the same thread) and replace "Your feedback here" with your input:
This helps CodeAnt AI learn and adapt to your team's coding style and standards.
Example
Retrigger review
Ask CodeAnt AI to review the PR again, by typing:
Check Your Repository Health
To analyze the health of your code repository, visit our dashboard at https://app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.