diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-01-21 13:06:56 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <aneira@soleta.eu> | 2020-01-21 17:33:05 +0100 |
commit | dabc7ebf83605dd6105599d7a45045e614e431cc (patch) | |
tree | 38ab5cef79602ef57af0436c1f381e22cf270c89 /src/linux | |
parent | ca0a62f9c69e13e0c74b099de85f52a9daf0df54 (diff) |
Change POST /refresh to GET /refresh
This patch changes the HTTP method for /refresh and cleans up the implementation
of the /refresh Linux operator.
Diffstat (limited to 'src/linux')
-rw-r--r-- | src/linux/ogOperations.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py index e58256f..e41bb86 100644 --- a/src/linux/ogOperations.py +++ b/src/linux/ogOperations.py @@ -162,11 +162,11 @@ def image_create(path, request, ogRest): return output.decode('utf-8') def refresh(ogRest): - listConfigs = [] - disk = -1; - try: - ogRest.proc = subprocess.Popen([OG_PATH + 'interfaceAdm/getConfiguration'], stdout=subprocess.PIPE, shell=True) + cmd = OG_PATH + 'interfaceAdm/getConfiguration' + ogRest.proc = subprocess.Popen([cmd], + stdout=subprocess.PIPE, + shell=True) (output, error) = ogRest.proc.communicate() except: raise ValueError('Error: Incorrect command value') |