Bumped the CI database cache version to 'v26.7.1'.#2779
Conversation
Forces a fresh database dump download on both CI providers, replacing a poisoned daily cache whose '.data' lacked 'db.sql' and caused provision to fail. Claude-Session: https://claude.ai/code/session_013nb4s2uzg5SPt5PaoCXmEw
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 58 seconds Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Repository UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
Code coverage (threshold: 90%) Per-class coverage |
This comment has been minimized.
This comment has been minimized.
2 similar comments
This comment has been minimized.
This comment has been minimized.
|
Code coverage (threshold: 90%) Per-class coverage |
|
📖 Documentation preview for this pull request has been deployed to Netlify: https://6a4dfd72f2c01f9577e88e0d--vortex-docs.netlify.app This preview is rebuilt on every commit and is not the production documentation site. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2779 +/- ##
==========================================
- Coverage 86.69% 86.25% -0.45%
==========================================
Files 96 89 -7
Lines 4727 4568 -159
Branches 47 3 -44
==========================================
- Hits 4098 3940 -158
+ Misses 629 628 -1 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Summary
The CI database cache is shared across all branches for a given day: it is keyed by a hardcoded
developbranch name plus a per-day timestamp, and is populated with a sanitized database dump on the first build of the day. A build populated that shared cache with a.datadirectory that was missingdb.sql. Because CircleCI's and GitHub Actions' cache-save steps never overwrite an existing key, every subsequent build on both providers restored that same incomplete.datadirectory for the rest of the day, so thebuildjob's provision step failed with "Unable to import database from file."Changes
v26.7.0tov26.7.1across every restore and save key in.circleci/config.yml,.circleci/vortex-test-common.yml, and.github/workflows/build-test-deploy.yml(16 identical substitutions)..datawith a validdb.sqlunder the new key.036340646("Bumped the CI database cache version to 'v26.7.0'."), which resolved an earlier occurrence of the same poisoned-cache failure.Before / After