- Fix to set out of file descriptor warning to operational verbosity.

This commit is contained in:
W.C.A. Wijngaards 2022-09-01 14:01:56 +02:00
parent 2450b4653a
commit d66e1cccf8
2 changed files with 4 additions and 2 deletions

View file

@ -2,6 +2,7 @@
- Fix to update config tests to fix checking if nonblocking sockets
work on OpenBSD.
- Slow down log frequency of write wait failures.
- Fix to set out of file descriptor warning to operational verbosity.
31 August 2022: Wouter
- Fix to avoid process wide fcntl calls mixed with nonblocking

View file

@ -1009,8 +1009,9 @@ int comm_point_perform_accept(struct comm_point* c,
if(b->eb->last_slow_log+SLOW_LOG_TIME <=
b->eb->secs) {
b->eb->last_slow_log = b->eb->secs;
log_err("accept failed, slow down "
"accept for %d msec: %s",
verbose(VERB_OPS, "accept failed, "
"slow down accept for %d "
"msec: %s",
NETEVENT_SLOW_ACCEPT_TIME,
sock_strerror(errno));
}