Merge "Fix TypeError being throw by wait_ready in Engine System Agent."

This commit is contained in:
Jenkins 2016-10-21 06:07:11 +00:00 committed by Gerrit Code Review
commit 69e4ab31ad

View File

@ -155,7 +155,7 @@ class Agent(object):
def wait_ready(self, timeout=100):
self._check_enabled()
template = {'Body': 'return', 'FormatVersion': '2.0.0', 'Scripts': {}}
self.call(template, False, timeout)
self.call_raw(template, timeout)
def _process_v1_result(self, result):
if result['IsException']: