Bug 1609 fix
[osm/N2VC.git] / n2vc / k8s_helm_base_conn.py
index 4a43ee2..89f6199 100644 (file)
@@ -26,7 +26,6 @@ import time
 import shlex
 import shutil
 import stat
 import shlex
 import shutil
 import stat
-import subprocess
 import os
 import yaml
 from uuid import uuid4
 import os
 import yaml
 from uuid import uuid4
@@ -1142,22 +1141,6 @@ class K8sHelmBaseConnector(K8sConnector):
                 new_list.append(new_dict)
         return new_list
 
                 new_list.append(new_dict)
         return new_list
 
-    def _local_exec(self, command: str) -> (str, int):
-        command = self._remove_multiple_spaces(command)
-        self.log.debug("Executing sync local command: {}".format(command))
-        # raise exception if fails
-        output = ""
-        try:
-            output = subprocess.check_output(
-                command, shell=True, universal_newlines=True
-            )
-            return_code = 0
-            self.log.debug(output)
-        except Exception:
-            return_code = 1
-
-        return output, return_code
-
     async def _local_async_exec(
         self,
         command: str,
     async def _local_async_exec(
         self,
         command: str,