From e91bae2bdb11c8466a42ae51660bb564de1aedc2 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 15 Aug 2019 16:44:11 +0200 Subject: s3:blocking: Remove bug reproducer from a few commits ago The problem is fixed, now we can revert the change that made it easier to trigger. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14113 Signed-off-by: Stefan Metzmacher Reviewed-by: Volker Lendecke (cherry picked from commit 62ec58b06c38ee82bb3147c4d325413fd3a76499) --- source3/smbd/blocking.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/smbd/blocking.c b/source3/smbd/blocking.c index 587923aa5ec..af889a10d62 100644 --- a/source3/smbd/blocking.c +++ b/source3/smbd/blocking.c @@ -239,7 +239,7 @@ struct tevent_req *smbd_smb1_do_locks_send( DBG_DEBUG("Blocked on a posix lock. Retry in one second\n"); - tmp = timeval_current_ofs(15, 0); + tmp = timeval_current_ofs(1, 0); endtime = timeval_min(&endtime, &tmp); } @@ -375,7 +375,7 @@ static void smbd_smb1_do_locks_try(struct tevent_req *req) DBG_DEBUG("Blocked on a posix lock. Retry in one second\n"); - tmp = timeval_current_ofs(15, 0); + tmp = timeval_current_ofs(1, 0); endtime = timeval_min(&endtime, &tmp); } -- cgit v1.2.1