Remove the loop argument from the call to build_component_ready.

This commit is contained in:
Jake Moshenko 2015-01-05 13:08:25 -05:00
parent 320ae63ccd
commit f58b09a064
2 changed files with 1 additions and 3 deletions

View file

@ -314,8 +314,7 @@ class BuildComponent(BaseComponent):
@trollius.coroutine
def _set_status(self, phase):
if phase == ComponentStatus.RUNNING:
loop = trollius.get_event_loop()
yield trollius.From(self.parent_manager.build_component_ready(self, loop))
yield trollius.From(self.parent_manager.build_component_ready(self))
self._component_status = phase