func/overlord/client.py |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit d7d94b839f6b072272b0fe2d35e94bb6c151826d
Author: S.Çağlar Onur <[email protected]>
Date:   Mon Aug 23 17:04:32 2010 -0400

    exclude downed_hosts list in every case

diff --git a/func/overlord/client.py b/func/overlord/client.py
index 6d73712..47a6c64 100644
--- a/func/overlord/client.py
+++ b/func/overlord/client.py
@@ -243,8 +243,9 @@ class Minions(object):
         results = []
         
         for host in hosts:
-            if host in self.downed_hosts and self.verbose:
-                sys.stderr.write("%s excluded due to being listed in %s\n" % 
(host, self.overlord_config.host_down_list))
+            if host in self.downed_hosts:
+                if self.verbose:
+                    sys.stderr.write("%s excluded due to being listed in %s\n" 
% (host, self.overlord_config.host_down_list))
                 continue
             if not self.just_fqdns:
                 host_res = "https://%s:%s"; % (host, self.port)


_______________________________________________
Func-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/func-list

Reply via email to