Skip to content

Commit

Permalink
Fix vrl doc processor test.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Dec 27, 2023
1 parent a28c98a commit 4495424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickwit/quickwit-indexing/src/actors/doc_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1001,9 +1001,9 @@ mod tests_vrl {
.state;
assert_eq!(counters.index_id, index_id.to_string());
assert_eq!(counters.source_id, source_id.to_string());
assert_eq!(counters.num_doc_parsing_errors.load(Ordering::Relaxed), 1);
assert_eq!(counters.num_doc_parsing_errors.load(Ordering::Relaxed), 2);
assert_eq!(counters.num_transform_errors.load(Ordering::Relaxed), 0);
assert_eq!(counters.num_oltp_trace_errors.load(Ordering::Relaxed), 1);
assert_eq!(counters.num_oltp_trace_errors.load(Ordering::Relaxed), 0);
assert_eq!(counters.num_valid_docs.load(Ordering::Relaxed), 2);
assert_eq!(counters.num_bytes_total.load(Ordering::Relaxed), 397);

Expand Down

0 comments on commit 4495424

Please sign in to comment.