commit: 128c13ff8bd9a1685fb844f7a83469b2271f5e0f
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 19 06:19:00 2018 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Apr 19 06:25:32 2018 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=128c13ff
AsyncTaskFuture: override _wait method
If the _wait method is called before the future is done, then wait for
it to complete.
pym/portage/util/_async/AsyncTaskFuture.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/pym/portage/util/_async/AsyncTaskFuture.py
b/pym/portage/util/_async/AsyncTaskFuture.py
index ee39183fe..c2316deeb 100644
--- a/pym/portage/util/_async/AsyncTaskFuture.py
+++ b/pym/portage/util/_async/AsyncTaskFuture.py
@@ -29,3 +29,8 @@ class AsyncTaskFuture(AsynchronousTask):
else:
self.returncode = 1
self.wait()
+
+ def _wait(self):
+ if self.returncode is None:
+ self.scheduler.run_until_complete(self.future)
+ return self.returncode