diff options
author | unknown <jonas@perch.ndb.mysql.com> | 2007-10-08 15:11:47 +0200 |
---|---|---|
committer | unknown <jonas@perch.ndb.mysql.com> | 2007-10-08 15:11:47 +0200 |
commit | 8625e94286df6f5d562d2ea8551eafa4826a6e27 (patch) | |
tree | ab58e891c9e1d5849697344f8f38a235cdb9e38c /storage | |
parent | b86c73080f4d456aa71ce1d8f1b21aec95265c7e (diff) | |
download | mariadb-git-8625e94286df6f5d562d2ea8551eafa4826a6e27.tar.gz |
ndb - Set usable timeout for atrt
(problem introduced by stew's timeout handling)
storage/ndb/src/cw/cpcd/APIService.cpp:
Set usable timeout for atrt
Diffstat (limited to 'storage')
-rw-r--r-- | storage/ndb/src/cw/cpcd/APIService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/ndb/src/cw/cpcd/APIService.cpp b/storage/ndb/src/cw/cpcd/APIService.cpp index 5bbf2c86e23..ca4ab733842 100644 --- a/storage/ndb/src/cw/cpcd/APIService.cpp +++ b/storage/ndb/src/cw/cpcd/APIService.cpp @@ -145,7 +145,7 @@ CPCDAPISession::CPCDAPISession(NDB_SOCKET_TYPE sock, : SocketServer::Session(sock) , m_cpcd(cpcd) { - m_input = new SocketInputStream(sock); + m_input = new SocketInputStream(sock, 7*24*60*60000); m_output = new SocketOutputStream(sock); m_parser = new Parser<CPCDAPISession>(commands, *m_input, true, true, true); } |