-
Notifications
You must be signed in to change notification settings - Fork 988
fix(flue-review): unstick the reviewer on @flue 1.0 (sandbox AbortSignal hang) #1520
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| // Worker-level Cloudflare exports for the Flue build. | ||
| // | ||
| // @flue 0.11 no longer auto-wires the container Durable Object class into the | ||
| // generated Worker bundle (0.8 did, via the "class_name ends in Sandbox" | ||
| // heuristic). Re-export @cloudflare/sandbox's `Sandbox` class here so the | ||
| // `Sandbox` DO binding + container in wrangler.jsonc resolve to a real exported | ||
| // class. Flue re-exports these named values from the generated Worker entry. | ||
| // Re-export @cloudflare/sandbox's `Sandbox` class so the `Sandbox` DO binding + | ||
| // container in wrangler.jsonc resolve to a real exported class. Flue re-exports | ||
| // these named values from the generated Worker entry. This is the documented | ||
| // "Connecting a remote sandbox" pattern: | ||
| // https://flueframework.com/docs/ecosystem/deploy/cloudflare/#connecting-a-remote-sandbox | ||
| export { Sandbox } from "@cloudflare/sandbox"; |
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,13 @@ | ||
| # Pinned to match the @cloudflare/sandbox version in package.json (0.10.3); | ||
| # Pinned to match the @cloudflare/sandbox version in package.json (0.12.1); | ||
| # the image and the SDK are versioned together. The base bundles the | ||
| # control-plane server, `node`, `git`, and `curl`, with a working dir at | ||
| # /workspace. The reviewer is git-only (no `gh`): it clones the public repo | ||
| # over https and diffs locally, so no extra tooling is required here. | ||
| FROM docker.io/cloudflare/sandbox:0.10.3 | ||
| # over https and diffs locally. | ||
| FROM docker.io/cloudflare/sandbox:0.12.1 | ||
|
|
||
| # ripgrep: the review agent reaches for `rg` to search the checkout. Without it, | ||
| # `rg` exits 127, which kills the sandbox shell session ("cannot execute further | ||
| # commands") and aborts the rest of the review. Install it so searches work. | ||
| RUN apt-get update \ | ||
| && apt-get install -y --no-install-recommends ripgrep \ | ||
| && rm -rf /var/lib/apt/lists/* |
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
[suggestion] The wrapper builds a fresh plain object via
{ ...sessionEnv, exec }and returns that. Object spread copies only own enumerable properties, so if Flue'sSessionEnvis a class instance this drops every prototype method and every private (#) field from the object Flue's runtime (or the agent's tools) subsequently calls against. The exercised path (the agent's shell tools →exec) survives becauseexecis the one member you re-define, but any other session-env method reached now or by a future Flue version would resolve toundefinedor throw on private-field access.I couldn't confirm this breaks today (no
node_modulesto inspect theSessionEnvshape, and the e2e verification only exercisesexec), so treat this as low-confidence. If you want to remove the latent footgun, shadowexecon the original object so its prototype, private fields, and identity are preserved (or, if the framework returns a frozen instance, wrap it in aProxythat intercepts onlyexec):