From: Jens Axboe Date: Fri, 30 Oct 2015 02:52:23 +0000 (+0900) Subject: Bump the client ETA timeout from 5s to 30s X-Git-Tag: fio-2.2.11~2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=125451c0455dfcfd11dbcf9570d23218ed4b8ad3;hp=09c782bbe1c62d016c8b165f304c7085a7ff9ffd 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 --- 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, };