From 9fc144cc2fd5f9515161af7bd502020501c8aa52 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Tue, 23 Aug 2016 18:51:23 +0400 Subject: [PATCH] timeout multiplied (#1990) --- ipc/nano/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/nano/src/lib.rs b/ipc/nano/src/lib.rs index df2e34d04..da48151a6 100644 --- a/ipc/nano/src/lib.rs +++ b/ipc/nano/src/lib.rs @@ -28,7 +28,7 @@ use nanomsg::{Socket, Protocol, Error, Endpoint, PollRequest, PollFd, PollInOut} use std::ops::Deref; const POLL_TIMEOUT: isize = 200; -const CLIENT_CONNECTION_TIMEOUT: isize = 15000; +const CLIENT_CONNECTION_TIMEOUT: isize = 120000; /// Generic worker to handle service (binded) sockets pub struct Worker where S: IpcInterface {