Fixing the name of the remote call.
This commit is contained in:
parent
74e54bdbbb
commit
f6e2bfc00d
1 changed files with 2 additions and 1 deletions
|
@ -69,7 +69,7 @@ class BuildComponent(BaseComponent):
|
|||
|
||||
yield From(self.subscribe(self._on_heartbeat, 'io.quay.builder.heartbeat'))
|
||||
yield From(self.subscribe(self._on_log_message, 'io.quay.builder.logmessage'))
|
||||
yield From(self.register(self._on_log_message_synchronously, 'io.quay.builder.io.quay.builder.logmessagesynchronously'))
|
||||
yield From(self.register(self._on_log_message_synchronously, 'io.quay.builder.logmessagesynchronously'))
|
||||
|
||||
yield From(self._set_status(ComponentStatus.WAITING))
|
||||
|
||||
|
@ -475,6 +475,7 @@ class BuildComponent(BaseComponent):
|
|||
# Unregister the current component so that it cannot be invoked again.
|
||||
self.parent_manager.build_component_disposed(self, True)
|
||||
|
||||
@trollius.coroutine
|
||||
def _on_log_message_synchronously(self, phase, json_data):
|
||||
""" A method to synchronously update the pushing
|
||||
phase so we don't have cancelled builds trying to be pushed
|
||||
|
|
Reference in a new issue