Delete intermediate results after retrieval#161
Conversation
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 51 minutes and 47 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📝 WalkthroughWalkthroughThe pull request adds cleanup logic to delete hub bucket files after streaming completes in Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 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 `@tests/common/helpers.py`:
- Around line 57-58: The function next_ecdh_keypair currently uses
ec.SECP256R1() as a default argument (evaluated at import time); change its
signature to accept curve=None and, inside the function, set if curve is None:
curve = ec.SECP256R1() before calling ec.generate_private_key, so the curve is
instantiated at call time; update any internal references to use the local curve
variable and preserve existing callers.
🪄 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: defaults
Review profile: CHILL
Plan: Pro
Run ID: e331bc23-6d6b-45bf-8cc5-890868e724d7
⛔ Files ignored due to path filters (1)
tests/assets/alice.pemis excluded by!**/*.pem
📒 Files selected for processing (4)
project/routers/intermediate.pytests/assets/alice.pfxtests/common/helpers.pytests/test_intermediate.py
Summary by CodeRabbit
Bug Fixes
Tests