summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorunknown <jonas@perch.ndb.mysql.com>2007-10-08 15:11:47 +0200
committerunknown <jonas@perch.ndb.mysql.com>2007-10-08 15:11:47 +0200
commit8625e94286df6f5d562d2ea8551eafa4826a6e27 (patch)
treeab58e891c9e1d5849697344f8f38a235cdb9e38c /storage
parentb86c73080f4d456aa71ce1d8f1b21aec95265c7e (diff)
downloadmariadb-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.cpp2
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);
}