[Akonadi] [Bug 401054] Stream parser exceptions
David Faure
bugzilla_noreply at kde.org
Tue Oct 22 15:57:54 BST 2019
https://bugs.kde.org/show_bug.cgi?id=401054
David Faure <faure at kde.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |faure at kde.org
--- Comment #3 from David Faure <faure at kde.org> ---
This error (which comes from the function below in kimap) means that no data
came onto the IMAP socket for 30 seconds. I guess this could happen with very
slow networks?
bool ImapStreamParser::waitForMoreData(bool wait)
{
if (wait) {
if (m_socket->bytesAvailable() > 0 ||
m_socket->waitForReadyRead(30000)) {
m_data.append(m_socket->readAll());
} else {
return false;
}
}
return true;
}
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the Kdepim-bugs
mailing list