Skip to content

Commit

Permalink
delete unnecessary ()
Browse files Browse the repository at this point in the history
  • Loading branch information
DolceTriade committed Mar 14, 2024
1 parent 299564d commit 8731c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blade/bep/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ pub async fn run_bes_grpc(
handlers: Arc::new(handlers),
};
Server::builder()
.tcp_keepalive(Some((std::time::Duration::from_secs(20))))
.tcp_keepalive(Some(std::time::Duration::from_secs(20)))
.http2_keepalive_interval(Some(std::time::Duration::from_secs(20)))
.http2_keepalive_timeout(Some(std::time::Duration::from_secs(30)))
.add_service(
Expand Down

0 comments on commit 8731c58

Please sign in to comment.