removed return from the method

Change-Id: Icdf75bb52e5b6285e922b78b734a901153949c5c
This commit is contained in:
the.bling 2017-04-05 11:44:13 +05:30
parent c034c74cf8
commit 6ccb043d79
1 changed files with 6 additions and 6 deletions

View File

@ -464,12 +464,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)