Merge "removed return from the method"

This commit is contained in:
Jenkins 2017-04-06 05:46:19 +00:00 committed by Gerrit Code Review
commit 085f35863d
1 changed files with 6 additions and 6 deletions

View File

@ -463,12 +463,12 @@ class GenericLearningDriver(driver.LearningDriver):
ip = self._get_master_ip(context, request_specs['cluster_id'])
port = request_specs['port']
return self._run_ssh(ip, ['echo',
base64.b64encode(EXIT_CODE),
'|',
'netcat',
'localhost',
port])
self._run_ssh(ip, ['echo',
base64.b64encode(EXIT_CODE),
'|',
'netcat',
'localhost',
port])
self._wait_for_model_to_load(ip, port, unload=True)