Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 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
1 change: 1 addition & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ clokwerk = "0.4"
derive_more = { version = "1", features = ["full"] }
itertools = "0.14"
once_cell = "1.20"
rayon = "1.8"
rand = "0.8.5"
regex = "1.7.3"
reqwest = { version = "0.11.27", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/alerts/alerts_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async fn execute_local_query(
filter_tag: None,
};

let (records, _) = execute(query, &tables[0], false)
let (records, _) = execute(query, false)
.await
.map_err(|err| AlertError::CustomError(format!("Failed to execute query: {err}")))?;

Expand Down
Loading
Loading