fix(conformance): repoint MedcareBridge import after #585 OGIT/OGAR split#586
Conversation
…plit #585 moved the OGAR-driven port bridges (UnifiedBridge harness + MedcareBridge/OpenProjectBridge/RedmineBridge) from lance-graph-ontology to lance-graph-ogar, but missed one consumer: the lance-graph-consumer-conformance crate still did `use lance_graph_ontology::bridges::MedcareBridge;` at lib.rs:93, which now fails to compile (MedcareBridge no longer lives there). Fix — the same transformation #585 applied to every other consumer: - repoint the import to `lance_graph_ogar::bridges::MedcareBridge` - add the `lance-graph-ogar` path dep to the crate's Cargo.toml OgitBridge (lib.rs:222) and WoaBridge (lib.rs:331) are untouched — those are OGIT-native legacy bridges that correctly stayed in lance-graph-ontology. The callcenter `UnifiedBridge` (lib.rs:25) is an unrelated type, also untouched. No dependency cycle: conformance -> ogar -> ontology -> contract.
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Warning Review limit reached
More reviews will be available in 45 minutes and 11 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?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 credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate. 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, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
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 |
Drift ledger — full accounting of the #585 moveThis PR is the code half of cleaning up after #585 (which moved the Invariant to preserve: OGIT ( Swept all four repos for
Deliberately untouched in the conformance crate: Companion: OGAR #92 fixes the docs half — the Local full-workspace build is blocked by unrelated missing sibling repos |
Lockfile picks up the disambiguated lance-graph-contract (path + git) from the rebased dependency graph. No source changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VGXeWN4XfVjteBVcVeuLo4
Drift from #585
#585 ("move OGAR port bridges to lance-graph-ogar — restore OGIT/OGAR SoC") relocated the OGAR-driven bridges out of
lance-graph-ontologybut missed one consumer.lance-graph-consumer-conformancestill imports:Since
MedcareBridge(and itsHealthcarePort) now live inlance-graph-ogar, this is a hard compile break in the conformance CI gate.Fix
The identical transformation #585 applied to every other consumer:
use lance_graph_ontology::bridges::MedcareBridge;→use lance_graph_ogar::bridges::MedcareBridge;lance-graph-ogar = { path = "../lance-graph-ogar" }to the crate'sCargo.tomlDeliberately untouched
OgitBridge(lib.rs:222)lance_graph_ontology::bridgesWoaBridge(lib.rs:331)lance_graph_ontology::bridgesUnifiedBridge(lib.rs:25)lance_graph_callcenter::unified_bridgeNo dependency cycle introduced:
conformance → ogar → ontology → contract.Local full-workspace build is blocked by unrelated missing sibling repos (
ndarray/p64path-deps), so this relies on repo CI to confirm — same as #585.🤖 Generated with Claude Code