From df6c71698399eec49bbf6517c0c4fcb75018cfba Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 27 May 2013 10:24:37 +0200 Subject: [PATCH] [solo.commands.update] drop download accounting for repositories, no longer used --- client/solo/commands/update.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/client/solo/commands/update.py b/client/solo/commands/update.py index 75ec3cc4b..fbacc96f2 100644 --- a/client/solo/commands/update.py +++ b/client/solo/commands/update.py @@ -232,29 +232,11 @@ Update Entropy Repositories. level="error", importance=1) return 127 - def _spawn_ugc(): - for repository in repos: - try: - webserv = self._entropy_ws( - entropy_client, repository) - except WebService.UnsupportedService: - continue - try: - webserv.add_downloads([repository], - clear_available_cache = True) - except WebService.WebServiceException as err: - const_debug_write(__name__, repr(err)) - continue - - ugc_th = ParallelTask(_spawn_ugc) - ugc_th.start() - rc = repo_intf.sync() if not rc: for repository in repos: self._show_notice_board_summary( entropy_client, repository) - ugc_th.join() return rc def _check_notice_board_availability(self, entropy_client, repository):