-
Notifications
You must be signed in to change notification settings - Fork 417
Move the shared sandbox layer to openenv.core.sandbox #1022
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -84,12 +84,12 @@ def __init__(self) -> None: | |
| try: | ||
| from ..config import OpenCodeConfig | ||
| from ..harness import OpenCodeSessionFactory | ||
| from ..sandbox import E2BSandboxBackend | ||
| from openenv.core.sandbox import E2BSandboxBackend | ||
|
cursor[bot] marked this conversation as resolved.
|
||
| from ..task import OpenCodeTask | ||
| except ImportError: # pragma: no cover | ||
| from config import OpenCodeConfig # type: ignore | ||
| from harness import OpenCodeSessionFactory # type: ignore | ||
| from sandbox import E2BSandboxBackend # type: ignore | ||
| from openenv.core.sandbox import E2BSandboxBackend | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Docker builds lose sandbox moduleHigh Severity Sandbox code was removed from the env package and both import paths now load Additional Locations (2)Reviewed by Cursor Bugbot for commit f363315. Configure here. |
||
| from task import OpenCodeTask # type: ignore | ||
|
|
||
| self._CommandResult = CommandResult | ||
|
|
||


Uh oh!
There was an error while loading. Please reload this page.