File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,10 @@ jobs:
62
62
buildname : ' ubuntu-20.04/gcc'
63
63
triplet : x64-linux
64
64
compiler : gcc_64
65
- - os : ubuntu-16.04
66
- buildname : ' ubuntu-16.04/gcc'
67
- triplet : x64-linux
68
- compiler : gcc_64
65
+ # - os: ubuntu-16.04
66
+ # buildname: 'ubuntu-16.04/gcc'
67
+ # triplet: x64-linux
68
+ # compiler: gcc_64
69
69
- os : macos-latest
70
70
buildname : ' macos/clang'
71
71
triplet : x64-osx
Original file line number Diff line number Diff line change @@ -552,9 +552,11 @@ void TcpConnectionImpl::readCallback()
552
552
}
553
553
else if (n < 0 )
554
554
{
555
- if (errno == EPIPE || errno == ECONNRESET) // TODO: any others?
555
+ if (errno == EPIPE || errno == ECONNRESET ||
556
+ errno == EAGAIN) // TODO: any others?
556
557
{
557
- LOG_DEBUG << " EPIPE or ECONNRESET, errno=" << errno;
558
+ LOG_DEBUG << " EPIPE or ECONNRESET, errno=" << errno
559
+ << " fd=" << socketPtr_->fd ();
558
560
return ;
559
561
}
560
562
#ifdef _WIN32
You can’t perform that action at this time.
0 commit comments