live: replace getConfiguration with refresh

Old refresh was a wrapper around getConfiguration bash script.

New refresh operation does what getConfiguration used to do
externally. See commit 097769b971.
more_events
Jose M. Guisado 2022-05-18 11:14:02 +02:00
parent 6c441e94e2
commit 1ab981a539
1 changed files with 4 additions and 10 deletions

View File

@ -145,9 +145,7 @@ class OgLiveOperations:
except:
raise ValueError('Error: Incorrect command value')
cmd_get_conf = f'{ogClient.OG_PATH}interfaceAdm/getConfiguration'
result = subprocess.check_output([cmd_get_conf], shell=True)
self._restartBrowser(self._url)
self.refresh(ogRest)
return output.decode('utf-8')
@ -235,11 +233,9 @@ class OgLiveOperations:
except:
raise ValueError('Error: Incorrect command value')
cmd_get_conf = f'{ogClient.OG_PATH}interfaceAdm/getConfiguration'
result = subprocess.check_output([cmd_get_conf], shell=True)
self._restartBrowser(self._url)
result = self.refresh(ogRest)
return self.parseGetConf(result.decode('utf-8'))
return result
def image_restore(self, request, ogRest):
disk = request.getDisk()
@ -265,9 +261,7 @@ class OgLiveOperations:
except:
raise ValueError('Error: Incorrect command value')
cmd_get_conf = f'{ogClient.OG_PATH}interfaceAdm/getConfiguration'
result = subprocess.check_output([cmd_get_conf], shell=True)
self._restartBrowser(self._url)
self.refresh(ogRest)
return output.decode('utf-8')