fix: set keepalive_intvl to 3s

This commit is contained in:
Yujia Qiao 2022-01-14 20:53:49 +08:00
parent 0d9e5ec1aa
commit 9ad61b5fdc
No known key found for this signature in database
GPG Key ID: DC129173B148701B
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ use tracing::{error, trace};
pub static DEFAULT_NODELAY: bool = false;
pub static DEFAULT_KEEPALIVE_SECS: u64 = 10;
pub static DEFAULT_KEEPALIVE_INTERVAL: u64 = 5;
pub static DEFAULT_KEEPALIVE_INTERVAL: u64 = 3;
/// Specify a transport layer, like TCP, TLS
#[async_trait]