BIND 10 trac213, updated. 5d38929255f7d8cca95020672a2b72273a07de1d [213] Fix killing of components

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Oct 25 08:45:57 UTC 2011


The branch, trac213 has been updated
       via  5d38929255f7d8cca95020672a2b72273a07de1d (commit)
      from  44160936a4c52ebaf4be6e1f0fcc02c84c7fb719 (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 5d38929255f7d8cca95020672a2b72273a07de1d
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date:   Tue Oct 25 10:44:01 2011 +0200

    [213] Fix killing of components
    
    It was on the wrong object.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/python/isc/bind10/component.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/bind10/component.py b/src/lib/python/isc/bind10/component.py
index 39a5cc7..d11b175 100644
--- a/src/lib/python/isc/bind10/component.py
+++ b/src/lib/python/isc/bind10/component.py
@@ -281,9 +281,9 @@ class Component:
         """
         if self._procinfo:
             if forcefull:
-                self._procinfo.kill()
+                self._procinfo.process.kill()
             else:
-                self._procinfo.terminate()
+                self._procinfo.process.terminate()
 
 class Configurator:
     """




More information about the bind10-changes mailing list