summaryrefslogtreecommitdiffstats
path: root/functest/cli/commands/cli_env.py
diff options
context:
space:
mode:
Diffstat (limited to 'functest/cli/commands/cli_env.py')
-rw-r--r--functest/cli/commands/cli_env.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/functest/cli/commands/cli_env.py b/functest/cli/commands/cli_env.py
index a5c0e3996..f93ef612c 100644
--- a/functest/cli/commands/cli_env.py
+++ b/functest/cli/commands/cli_env.py
@@ -20,8 +20,6 @@ class Env(object): # pylint: disable=too-few-public-methods
@staticmethod
def show():
install_type = os.environ.get('INSTALLER_TYPE', 'Unknown')
- installer_ip = os.environ.get('INSTALLER_IP', 'Unknown')
- installer_info = ("%s, %s" % (install_type, installer_ip))
scenario = os.environ.get('DEPLOY_SCENARIO', 'Unknown')
node = os.environ.get('NODE_NAME', 'Unknown')
build_tag = os.environ.get('BUILD_TAG', None)
@@ -29,7 +27,7 @@ class Env(object): # pylint: disable=too-few-public-methods
build_tag = build_tag.lstrip(
"jenkins-").lstrip("functest").lstrip("-")
- env_info = {'INSTALLER': installer_info,
+ env_info = {'INSTALLER': install_type,
'SCENARIO': scenario,
'POD': node,
'BUILD_TAG': build_tag}