BIND 10 master, updated. 48aa711b39c5c57d569d6738257ed9e5b4d34995 [master] fix zonemgr initialization order problem from #2967
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Jul 8 16:25:44 UTC 2013
The branch, master has been updated
via 48aa711b39c5c57d569d6738257ed9e5b4d34995 (commit)
from 18f8355aae2aabb011a57176ec7381b656e52260 (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 48aa711b39c5c57d569d6738257ed9e5b4d34995
Author: Paul Selkirk <pselkirk at isc.org>
Date: Mon Jul 8 12:25:34 2013 -0400
[master] fix zonemgr initialization order problem from #2967
-----------------------------------------------------------------------
Summary of changes:
src/bin/zonemgr/zonemgr.py.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/zonemgr/zonemgr.py.in b/src/bin/zonemgr/zonemgr.py.in
index 83ffe68..2d5167b 100755
--- a/src/bin/zonemgr/zonemgr.py.in
+++ b/src/bin/zonemgr/zonemgr.py.in
@@ -115,8 +115,6 @@ class ZonemgrRefresh:
self._max_transfer_timeout = None
self._refresh_jitter = None
self._reload_jitter = None
- self.update_config_data(module_cc.get_full_config(), module_cc)
- self._running = False
# This is essentially private, but we allow tests to customize it.
self._datasrc_clients_mgr = DataSrcClientsMgr()
# data_sources configuration should be ready with cfgmgr, so this
@@ -124,6 +122,8 @@ class ZonemgrRefresh:
# to terminate the program.
self._module_cc.add_remote_config_by_name('data_sources',
self._datasrc_config_handler)
+ self.update_config_data(module_cc.get_full_config(), module_cc)
+ self._running = False
def _random_jitter(self, max, jitter):
"""Imposes some random jitters for refresh and
More information about the bind10-changes
mailing list