Conversation
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
# Conflicts: # rs/moq-json/src/window/mod.rs
Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
… archive` (#4113) Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com> Co-authored-by: Grok 4.7 <noreply@x.ai>
Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
…4115) Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com> Co-authored-by: Grok 4.7 <noreply@x.ai>
#4155) Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
|
Warning Review limit reachedNext included review available in 7 minutes. View limit detailsLimit details: You’ve used all 4 included reviews currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. Review configuration: ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Advanced Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (52)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d6059370ff
ℹ️ 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".
| Err(err) => { | ||
| tracing::warn!(track = %name, %err, "track ended"); | ||
| track.subscribed = false; |
There was a problem hiding this comment.
Return source subscription failures
When an enrolled track's recv_group returns an error, this branch converts the failure into a clean track ending, so Writer::run can ultimately return Ok(()) if the broadcast itself finishes normally. Any remaining groups on that track are silently absent from an archive reported as successful; propagate the source error instead of treating it like Ok(None).
AGENTS.md reference: AGENTS.md:L17-L18
Useful? React with 👍 / 👎.
| tokio::time::sleep(interval).await; | ||
| reader.refresh().await?; |
There was a problem hiding this comment.
When the user passes --follow 0s, the duration parser accepts zero and this loop repeatedly sleeps for zero duration and calls reader.refresh(), continuously listing the object store. This can hammer a remote S3/GCS/Azure backend and accrue substantial request load, so reject a zero interval before entering the loop.
AGENTS.md reference: AGENTS.md:L17-L18
Useful? React with 👍 / 👎.
| stage ends once the broadcast does, and it refuses a store URL that already | ||
| holds a recording. `--retention 1h` keeps only the last hour (a DVR), |
There was a problem hiding this comment.
Correct the existing-recording behavior in the CLI docs
The CLI passes the store directly to Writer::new, which now explicitly recovers and resumes an existing recording rather than refusing it. This statement can cause an operator to reuse a prefix expecting a safe failure; if the new source restarts group numbering, the resume floor silently skips its earlier groups. Document the resume and numbering constraints, or restore a CLI-level occupancy check.
AGENTS.md reference: AGENTS.md:L27-L27
Useful? React with 👍 / 👎.
Questline branch for /quest/m1/archive/README.md. Child quests merge here; this stays a draft until the line's
Questslist is empty.(written by Opus 5.5)
🤖 Generated with Claude Code