mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 14:53:15 -05:00
- Fix to set out of file descriptor warning to operational verbosity.
This commit is contained in:
parent
2450b4653a
commit
d66e1cccf8
2 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue