Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-mysten committed Jun 17, 2024
1 parent 2e5c181 commit b1175d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sui-graphql-rpc/src/server/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ async fn health_check(

let max_checkpoint_lag_ms = query_params
.max_checkpoint_lag_ms
.map(|ms| Duration::from_millis(ms))
.map(Duration::from_millis)
.unwrap_or_else(|| DEFAULT_MAX_CHECKPOINT_LAG);

let checkpoint_timestamp =
Expand Down

0 comments on commit b1175d1

Please sign in to comment.