From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25E721382C5 for ; Mon, 23 Apr 2018 19:48:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F06E2E0B13; Mon, 23 Apr 2018 19:48:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7CE9E0B13 for ; Mon, 23 Apr 2018 19:48:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66B82335C60 for ; Mon, 23 Apr 2018 19:48:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0A6E27F for ; Mon, 23 Apr 2018 19:48:39 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1524512665.7e3bbd0f70f86d84964cd2507d85aae5d7a7a422.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/EbuildFetcher.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 7e3bbd0f70f86d84964cd2507d85aae5d7a7a422 X-VCS-Branch: master Date: Mon, 23 Apr 2018 19:48:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1a9bf12e-9bcb-4674-9ddc-8dc7534673a6 X-Archives-Hash: a1448a88a61147623e88d3adccffaa85 commit: 7e3bbd0f70f86d84964cd2507d85aae5d7a7a422 Author: Zac Medico gentoo org> AuthorDate: Mon Apr 23 19:44:25 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Apr 23 19:44:25 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=7e3bbd0f _EbuildFetcherProcess: pass loop parameter to async_fetch_map Fixes: 9596fc68bf13 ("EbuildFetcher: add _async_uri_map method (bug 653810)") pym/_emerge/EbuildFetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/_emerge/EbuildFetcher.py b/pym/_emerge/EbuildFetcher.py index f59b5cffa..466beac06 100644 --- a/pym/_emerge/EbuildFetcher.py +++ b/pym/_emerge/EbuildFetcher.py @@ -263,7 +263,7 @@ class _EbuildFetcherProcess(ForkProcess): pass result = portdb.async_fetch_map(self.pkg.cpv, - useflags=use, mytree=mytree) + useflags=use, mytree=mytree, loop=self.scheduler) result.add_done_callback(cache_result) return result