Skip to content

Commit

Permalink
Ingest --v2 parameter was not properly plugged in the cli (#4124)
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton authored Nov 13, 2023
1 parent 114426b commit de8eb9c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions quickwit/quickwit-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ impl ClientArgs {
if let Some(commit_timeout) = self.commit_timeout {
builder = builder.commit_timeout(commit_timeout);
}
if self.ingest_v2 {
builder = builder.enable_ingest_v2();
}
builder.build()
}

Expand Down

0 comments on commit de8eb9c

Please sign in to comment.