diff options
-rw-r--r-- | src/linux/ogOperations.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py index ef01d2c..58dff3a 100644 --- a/src/linux/ogOperations.py +++ b/src/linux/ogOperations.py @@ -146,6 +146,7 @@ class OgLinuxOperations: return output.decode('utf-8') def setup(self, request, ogRest): + table_type = request.getType() disk = request.getDisk() cache = request.getCache() cache_size = request.getCacheSize() @@ -160,7 +161,7 @@ class OgLinuxOperations: if ogRest.terminated: break - cmd = f'{ogClient.OG_PATH}interfaceAdm/Configurar {disk} {cfg}' + cmd = f'{ogClient.OG_PATH}interfaceAdm/Configurar {table_type} {cfg}' try: ogRest.proc = subprocess.Popen([cmd], stdout=subprocess.PIPE, |