Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
tests:
name: Unit tests
runs-on: "ubuntu-latest"
timeout-minutes: 40
timeout-minutes: 60
permissions:
contents: read
actions: write
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
lints:
name: Lints
runs-on: "ubuntu-latest"
timeout-minutes: 20
timeout-minutes: 60
permissions:
contents: read
actions: write
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-cli/src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ mod test {
let mut split_4 = template_split;
split_4.split_metadata = split_metadata_4;

let splits = vec![split_1, split_2, split_3, split_4];
let splits = [split_1, split_2, split_3, split_4];

let splits_num_docs = splits
.iter()
Expand Down
3 changes: 1 addition & 2 deletions quickwit/quickwit-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ fn about_text() -> String {

#[cfg(test)]
mod tests {
use std::path::PathBuf;
use std::str::FromStr;
use std::time::Duration;

Expand Down Expand Up @@ -683,7 +682,7 @@ mod tests {
split_id,
target_dir,
..
})) if &index_id == "wikipedia" && &split_id == "ABC" && target_dir == PathBuf::from("datadir")
})) if &index_id == "wikipedia" && &split_id == "ABC" && target_dir == *"datadir"
));
Ok(())
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ mod tests {
index_uid: IndexUid::for_test("index-2", 0),
source_id: "source2".to_string(),
};
let sources = vec![
let sources = [
SourceToSchedule {
source_uid: source_1.clone(),
source_type: SourceToScheduleType::NonSharded {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quickwit/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.90"
channel = "1.91"
components = ["cargo", "clippy", "rustfmt", "rust-docs"]