Increased timeout from 1s to 5s between client library and service

This commit is contained in:
Micke Prag 2011-03-07 09:57:44 +00:00
parent 80dfac0221
commit 38f4ab6f53

View file

@ -199,7 +199,7 @@ std::wstring Client::sendToService(const Message &msg) {
}
s.write(msg.data());
return s.read(1000);
return s.read(5000);
}
void Client::stopThread(){