[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
This commit is contained in:
hpk 2007-02-06 22:22:50 +01:00
parent 12b991723e
commit c888d05772
1 changed files with 4 additions and 2 deletions

View File

@ -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():