Conversation
GetStream v3.1.1 fixes a memory leak in drain proxy cleanup (GetStream/stream-py#233). Without proper cleanup, dead proxies continue queuing video frames, causing OOM in agents that process video feeds.
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
📝 WalkthroughWalkthroughUpdated the minimum required version of the Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@agents-core/pyproject.toml`:
- Line 24: Update the getstream dependency declaration that currently reads
getstream[webrtc,telemetry]>=3.0.1,<4 to require the patched release by changing
it to getstream[webrtc,telemetry]>=3.1.1,<4 so the buggy 3.0.x series cannot be
resolved when this plugin is installed independently; locate the dependency line
in the plugin's pyproject.toml (the getstream[webrtc,telemetry] requirement) and
update the version specifier accordingly.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 524c2054-9d28-430a-ac0b-5edeff3f6c2f
📒 Files selected for processing (1)
agents-core/pyproject.toml
Why
GetStream v3.1.1 fixes a memory leak in drain proxy cleanup. Without proper cleanup, dead proxies continue queuing video frames, causing out-of-memory errors in agents that process video feeds.
Fixes GetStream/stream-py#233
Changes
Summary by CodeRabbit