Merge branch '2.0' into 2.1

This commit is contained in:
Julien Duponchelle
2017-05-31 16:58:31 +02:00
19 changed files with 218 additions and 21 deletions

View File

@ -699,7 +699,10 @@ class Project:
self._loading = False
# Should we start the nodes when project is open
if self._auto_start:
yield from self.start_all()
# Start all in the background without waiting for completion
# we ignore errors because we want to let the user open
# their project and fix it
asyncio.async(self.start_all())
@asyncio.coroutine
def wait_loaded(self):