Attempt to fix disconnects by syncing to match upstream eventpoll
Upstream no longer repeats requests or force disconnects upon 404 or internal library error, so we shouldn't either.
This commit is contained in:
@@ -55,7 +55,7 @@ static void va_format(std::string& out, const char *fmt, va_list& va)
|
||||
const auto size = vsnprintf(va);
|
||||
if (size < 0)
|
||||
{
|
||||
LL_ERRS() << "Encoding failed, code " << size << ". String hint:" << out << '/' << fmt << LL_ENDL;
|
||||
LL_ERRS() << "Encoding failed, code " << size << ". String hint: " << out << '/' << fmt << LL_ENDL;
|
||||
}
|
||||
else if (static_cast<vec_t::size_type>(size) >= smallsize) // Resize if we need more space
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user