helper status: include percentage fetched+pushed, add helper-uploads to the upload/download list

This commit is contained in:
Brian Warner
2008-04-14 18:36:27 -07:00
parent 86578bc3cd
commit a2dd4d14a6
4 changed files with 57 additions and 12 deletions

View File

@ -369,3 +369,11 @@ class Client(node.Node, testutil.PollMixin):
def list_recent_retrieve(self):
watcher = self.getServiceNamed("mutable-watcher")
return watcher.list_recent_retrieve()
def list_active_helper_statuses(self):
helper = self.getServiceNamed("helper")
return helper.get_active_upload_statuses()
def list_recent_helper_statuses(self):
helper = self.getServiceNamed("helper")
return helper.get_recent_upload_statuses()