Skip to content

Commit

Permalink
Make CI happy
Browse files Browse the repository at this point in the history
  • Loading branch information
xgreenx committed Jun 14, 2024
1 parent f9c4724 commit f5353e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/fuel-core/src/service/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ use fuel_core_types::{
},
secrecy::Secret,
};
use std::{
net::SocketAddr,
time::Duration,
};
use std::time::Duration;
use strum_macros::{
Display,
EnumString,
Expand Down Expand Up @@ -125,7 +122,10 @@ impl Config {

Self {
graphql_config: GraphQLConfig {
addr: SocketAddr::new(std::net::Ipv4Addr::new(127, 0, 0, 1).into(), 0),
addr: std::net::SocketAddr::new(
std::net::Ipv4Addr::new(127, 0, 0, 1).into(),
0,
),
max_queries_depth: 16,
max_queries_complexity: 20000,
max_queries_recursive_depth: 10,
Expand Down

0 comments on commit f5353e1

Please sign in to comment.