Browse Source

update the comments

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac335@3204 e5f2f494-b856-4b98-b285-d166d9295462
Jerry 14 years ago
parent
commit
e7e02306f7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/zonemgr/zonemgr.py.in

+ 2 - 2
src/bin/zonemgr/zonemgr.py.in

@@ -333,12 +333,12 @@ class ZonemgrRefresh:
 
     def _run_timer(self):
         while self._running:
-            # Zonemgr has no zone.
+            # If zonemgr has no zone, set timer timeout to LOWERBOUND_RETRY.
             if self._zone_mgr_is_empty():
                 timeout = LOWERBOUND_RETRY
             else:
                 zone_need_refresh = self._find_need_do_refresh_zone()
-                # If don't get zone with minimum next refresh time, set timer timeout = LOWERBOUND_REFRESH
+                # If don't get zone with minimum next refresh time, set timer timeout to LOWERBOUND_RETRY
                 if not zone_need_refresh:
                     timeout = LOWERBOUND_RETRY
                 else: