fix: prevent client proxy from being treated as a thenable#355
Merged
darshkpatel merged 3 commits intomainfrom Feb 14, 2026
Merged
fix: prevent client proxy from being treated as a thenable#355darshkpatel merged 3 commits intomainfrom
darshkpatel merged 3 commits intomainfrom
Conversation
Return undefined for .then access in the recursive proxy so that JavaScript's Promise resolution does not mistake a River client for a thenable object.
Member
|
dont forget to bump the package version |
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.
Why
River's client proxy uses
_createRecursiveProxywhich returns a callable proxy for any string property access, including.then. This causes a bug when a River client is resolved from a Promise:JavaScript's Promise resolution procedure checks
typeof value.then === 'function'on the resolved value. Since the proxy intercepts.thenand returns a callable proxy, the runtime treats the client as a thenable and invokes.then(resolve, reject). This triggers theapplytrap with path["then"], which fails theserviceName && procName && procMethodcheck.This was discovered in repl-it-web#67471 where the scribe service spawns a worker thread and returns the River client from a
.then()callback.What changed
router/client.ts: Returnundefinedfor.thenaccess in the recursive proxy'sgettrap:__tests__/typescript-stress.test.ts: Two tests confirming:client.thenisundefinedPromise.resolve().then(() => client)is the same object (not re-wrapped as a thenable)Versioning
~ written by Zerg 👾