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 59 minutes and 2 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. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
📝 WalkthroughWalkthroughThis PR adds eVault Logs functionality to the dev-sandbox interface with a new tab displaying logs fetched via API, and implements filtering to exclude single-participant chats from two separate client platforms' chat list displays. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Client as Client UI
participant Registry as Registry API
participant PlatformAuth as Platform Auth
participant eVault as eVault API
User->>Client: Enter eName and click "Load Logs"
Client->>Client: Validate eName from input or selectedIdentity
Client->>Registry: Resolve eVault base URI (if needed)
Registry-->>Client: Return resolved base URL
Client->>PlatformAuth: Request platform bearer token
PlatformAuth-->>Client: Return token
Client->>eVault: GET /logs with token, limit, cursor
eVault-->>Client: Return logs array and nextCursor
Client->>Client: Append/replace logs in state
Client-->>User: Display logs table with pagination
alt User clicks "Load More"
User->>Client: Click "Load More"
Client->>eVault: GET /logs with nextCursor
eVault-->>Client: Return additional logs
Client->>Client: Append new logs to table
Client-->>User: Update table with more results
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested reviewers
Poem
✨ 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 |
Description of change
Issue Number
Type of change
How the change has been tested
Change checklist
Summary by CodeRabbit
New Features
Bug Fixes