From c888d05772b0d715945ad7086bfd6778f10ca9e1 Mon Sep 17 00:00:00 2001 From: hpk Date: Tue, 6 Feb 2007 22:22:50 +0100 Subject: [PATCH] [svn r38037] not showing rsync-items by default, shows that something is odd regarding the messages, i think (read the diff, it's a simple change, i guess we actually want to generate an Event also for the web reporter at some point, i think, but we could live with this for the merge IMO) --HG-- branch : trunk --- py/test/rsession/hostmanage.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/py/test/rsession/hostmanage.py b/py/test/rsession/hostmanage.py index fbefc9fcc..becc9a060 100644 --- a/py/test/rsession/hostmanage.py +++ b/py/test/rsession/hostmanage.py @@ -73,7 +73,8 @@ class HostRSync(py.execnet.RSync): if 'ignores' in kwargs: ignores = kwargs.pop('ignores') self._ignores = ignores or [] - super(HostRSync, self).__init__(delete=True) + kwargs['delete'] = True + super(HostRSync, self).__init__(**kwargs) def filter(self, path): path = py.path.local(path) @@ -129,7 +130,8 @@ class HostManager(object): ignores = self.config.getvalue_pathlist("dist_rsync_ignore") self.prepare_gateways(reporter) for root in self.roots: - rsync = HostRSync(ignores=ignores) + rsync = HostRSync(ignores=ignores, + verbose=self.config.option.verbose) destrelpath = root.relto(self.config.topdir) for host in self.hosts: def donecallback():