]> git.ipfire.org Git - thirdparty/bind9.git/commit
chg: dev: parse user configuration before exclusive mode
authorColin Vidal <colin@isc.org>
Tue, 24 Jun 2025 08:52:11 +0000 (10:52 +0200)
committerColin Vidal <colin@isc.org>
Tue, 24 Jun 2025 08:52:11 +0000 (10:52 +0200)
commitb49f83a3e6c7a9deca3fc3f3513e552b67eb374b
tree69c4ef84be02c8da6af8e5830ffad0ca5f541996
parent6f17df074d20cd085bf4e5d8428ad735a654f7e2
parent349cc060f4120848a6678105320b90edb7a4105c
chg: dev: parse user configuration before exclusive mode

Previously, `named.conf` was parsed while the server was in exclusive (i.e., single-threaded) mode and unable to answer queries. This could cause an unnecessary delay in query processing when the file was large. We now delay entry into exclusive mode until after the configuration has been parsed, but before it is applied.

Merge branch 'colin/configparse-before-exclusive' into 'main'

See merge request isc-projects/bind9!10418