Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <[email protected]>
  • Loading branch information
BugenZhao committed Oct 18, 2023
1 parent 5b775e9 commit 5eadf1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ description = "Build dashboard"
condition = { env_set = [
"ENABLE_BUILD_DASHBOARD",
], files_modified = { input = [
"./dashboard/**/*.js",
"./dashboard/**/*.ts*",
"./dashboard/package.json",
"./dashboard/next.config.js",
Expand Down
2 changes: 1 addition & 1 deletion src/meta/src/dashboard/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ pub(super) mod handlers {
}

for worker_node in worker_nodes {
let client = compute_clients.get(&worker_node).await.map_err(err)?;
let client = compute_clients.get(worker_node).await.map_err(err)?;
let result = client.stack_trace().await.map_err(err)?;

merge(&mut all, result);
Expand Down

0 comments on commit 5eadf1f

Please sign in to comment.