From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: location@lists.ipfire.org Subject: [PATCH 03/10] importer: Just fetch any exception from the executor Date: Tue, 27 Sep 2022 16:48:40 +0000 Message-ID: <20220927164847.3409646-3-michael.tremer@ipfire.org> In-Reply-To: <20220927164847.3409646-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0343226569347517877==" List-Id: --===============0343226569347517877== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Any exceptions will only be raised in the main thread when they are fetched from the executor. We do not need to print any other return values here. Signed-off-by: Michael Tremer --- src/scripts/location-importer.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scripts/location-importer.in b/src/scripts/location-importer= .in index ddec376..014f3b6 100644 --- a/src/scripts/location-importer.in +++ b/src/scripts/location-importer.in @@ -1297,8 +1297,9 @@ class CLI(object): with concurrent.futures.ThreadPoolExecutor(max_workers=3D10) as executor: results =3D executor.map(self._fetch_geofeed, geofeeds) =20 + # Fetch all results to raise any exceptions for result in results: - print(result) + pass =20 def _fetch_geofeed(self, geofeed): log.debug("Fetching Geofeed %s" % geofeed.url) --=20 2.30.2 --===============0343226569347517877==--