Skip to content

Commit 0ffd280

Browse files
authored
Merge pull request #410 from AdaWorldAPI/claude/fix-with-jsonl-audit-return-type
fix(callcenter): with_jsonl_audit return type io::Result → Result<Self, AuditError> (unblocks jsonl feature)
2 parents 57970a2 + a505de7 commit 0ffd280

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/lance-graph-callcenter/src/unified_bridge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ impl<B: NamespaceBridge> UnifiedBridge<B> {
312312
super_domain: SuperDomain,
313313
salt: u64,
314314
base_path: impl Into<std::path::PathBuf>,
315-
) -> std::io::Result<Self> {
315+
) -> Result<Self, crate::audit_sink::AuditError> {
316316
let sink = Arc::new(crate::audit_sink::JsonlAuditSink::new(base_path.into())?);
317317
Ok(self.with_audit_chain(super_domain, salt, sink))
318318
}

0 commit comments

Comments
 (0)