BIND 10 trac657, updated. b9d341ecd382b44d72888899e3559d7d41baa203 [trac657] Revert "[trac657] Remove nop operation"
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Mar 4 23:42:30 UTC 2011
The branch, trac657 has been updated
via b9d341ecd382b44d72888899e3559d7d41baa203 (commit)
from b2d210a1ed486dc8c1083deb6f1b0bf2802e8d57 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b9d341ecd382b44d72888899e3559d7d41baa203
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Mar 4 15:35:59 2011 -0800
[trac657] Revert "[trac657] Remove nop operation"
This reverts commit 3407184a20c367a0de02b41befb4db16971c9589.
This is not nop, and is necessary for the default sqlite3 data source
in the "from source" mode.
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/main.cc | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/main.cc b/src/bin/auth/main.cc
index 0473009..275ae7d 100644
--- a/src/bin/auth/main.cc
+++ b/src/bin/auth/main.cc
@@ -176,8 +176,13 @@ main(int argc, char* argv[]) {
auth_server->setXfrinSession(xfrin_session);
auth_server->setStatisticsSession(statistics_session);
+ // Configure the server. configureAuthServer() is expected to install
+ // all initial configurations, but as a short term workaround we
+ // handle the traditional "database_file" setup by directly calling
+ // updateConfig().
auth_server->setConfigSession(config_session);
configureAuthServer(*auth_server, config_session->getFullConfig());
+ auth_server->updateConfig(ElementPtr());
cout << "[b10-auth] Server started." << endl;
io_service.run();
More information about the bind10-changes
mailing list