Commit 86f2c144 authored by Antoine Millet's avatar Antoine Millet
Browse files

Increased RPC timeout from 30s to 120s

parent c984a7c1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -104,7 +104,8 @@ class CCServer(object):
        self.rpc = SSLRpcServer.from_addr(address, port, certfile=certfile,
                                          keyfile=keyfile,
                                          conn_kw=dict(handler=WelcomeHandler(self),
                                                       on_disconnect='on_disconnect'))
                                                       on_disconnect='on_disconnect',
                                                       timeout=120))

        self.motd_filename = os.path.join(conf_dir, 'motd')