-
Notifications
You must be signed in to change notification settings - Fork 47
Episode runner presigned URL support #4946
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: nishad/job-runner-s3-utils
Are you sure you want to change the base?
Episode runner presigned URL support #4946
Conversation
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
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.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 50db0b2922
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
metta/sim/single_episode_runner.py
Outdated
| result = subprocess.run( | ||
| [sys.executable, "-m", "metta.sim.pure_single_episode_runner", temp_file.name], |
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.
Invoke existing pure runner module
When JOB_SPEC_URI is set, the subprocess is launched with -m metta.sim.pure_single_episode_runner, but this repository only provides alo.pure_single_episode_runner. As written, the subprocess will exit with ModuleNotFoundError, so presigned URL jobs never run. Point the call at the existing module (or add the missing module) to make the new mode functional.
Useful? React with 👍 / 👎.
ab29f5c to
ca526a7
Compare
50db0b2 to
68bc75b
Compare
ca526a7 to
92a4fd1
Compare
68bc75b to
3c8cb04
Compare
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
92a4fd1 to
e19544d
Compare
3c8cb04 to
d11d042
Compare

Add presigned URL mode to episode runner for cross-account isolation.