From 125451c0455dfcfd11dbcf9570d23218ed4b8ad3 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 30 Oct 2015 11:52:23 +0900 Subject: [PATCH 1/1] Bump the client ETA timeout from 5s to 30s 5 seconds is low enough that we sometimes falsely trigger the timeout. It's meant to catch clients that have disappeared, so 5 seconds is arguably way too low. Bump it to 30 seconds instead. Signed-off-by: Jens Axboe --- server.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.h b/server.h index 18a689ca..eb29de78 100644 --- a/server.h +++ b/server.h @@ -74,7 +74,7 @@ enum { FIO_NET_NAME_MAX = 256, - FIO_NET_CLIENT_TIMEOUT = 5000, + FIO_NET_CLIENT_TIMEOUT = 30000, FIO_PROBE_FLAG_ZLIB = 1UL << 0, }; -- 2.25.1