]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix to set out of file descriptor warning to operational verbosity.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 1 Sep 2022 12:01:56 +0000 (14:01 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 1 Sep 2022 12:01:56 +0000 (14:01 +0200)
doc/Changelog
util/netevent.c

index 6c627a68a0f7ad3b0456d7a291a8e93fa4d6ba7e..b4abf6f0d9dfee07fddfaca3536e6008fc49e12b 100644 (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
index de707885187f64b9d913c2d6843616c1ea48d4f3..9030a792c26d9021fa128679d2c53c619bf88585 100644 (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));
                                }