We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a2853 commit 0efd99aCopy full SHA for 0efd99a
rust/cocoindex/src/execution/indexing_status.rs
@@ -19,8 +19,8 @@ impl SourceLogicFingerprint {
19
) -> Result<Self> {
20
let import_op = &exec_plan.import_ops[source_idx];
21
let mut fp = Fingerprinter::default();
22
- if exec_plan.import_ops.len() != export_exec_ctx.len() {
23
- bail!("Import op count does not match export op count");
+ if exec_plan.export_ops.len() != export_exec_ctx.len() {
+ bail!("`export_ops` count does not match `export_exec_ctx` count");
24
}
25
for (export_op, export_op_exec_ctx) in
26
std::iter::zip(exec_plan.export_ops.iter(), export_exec_ctx.iter())
0 commit comments