From dcab0c3d1ad1eea24f77b3acbcbadbe433d3ddd0 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Tue, 23 Aug 2022 02:31:39 +0800 Subject: [PATCH] feat: pending test --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 64228c8..3217f18 100644 --- a/src/client.rs +++ b/src/client.rs @@ -54,7 +54,7 @@ pub async fn run(listen_config: &ListenConfig) -> XResult<()> { information!("Get connection: {} - {}", client_stream_time, client_stream.peer_addr().unwrap()); let time = util_time::get_current_millis(); if (time as i128 - client_stream_time as i128).abs() > 3_000 { - warning!("Connection is more than 3 second, abandon connection"); + warning!("Connection is more than 3 seconds, abandon connection"); continue; }