Remove redundant logging of password 28/68028/3
authorSam Hague <shague@redhat.com>
Wed, 7 Feb 2018 16:47:25 +0000 (11:47 -0500)
committerSam Hague <shague@redhat.com>
Wed, 7 Feb 2018 18:08:25 +0000 (18:08 +0000)
Change-Id: Ibe61f367b70d66956e74720d491608cd49481d77
Signed-off-by: Sam Hague <shague@redhat.com>
csit/libraries/Utils.robot

index 81b79a0854ecb5aa501c2dd0dfc87c6e65a1267a..3c13197def3298542eb91e006169e2845149755b 100644 (file)
@@ -182,8 +182,7 @@ Run Command On Remote System
     ...    No test conditions are checked.
     Run Keyword If    "${return_stdout}"!="True" and "${return_stderr}"!="True"    Fail    At least one of {return_stdout} or {return_stderr} args should be set to True
     ${current_ssh_connection}=    SSHLibrary.Get Connection
-    BuiltIn.Log    Attempting to execute command "${cmd}" on remote system "${system}" by user "${user}" with keyfile pass "${keyfile_pass}" and prompt "${prompt}"
-    BuiltIn.Log    ${password}
+    BuiltIn.Log    Attempting to execute command "${cmd}" on remote system "${system}" by user "${user}" with keyfile pass "${keyfile_pass}" and prompt "${prompt}" and password "${password}"
     ${conn_id}=    SSHLibrary.Open Connection    ${system}    prompt=${prompt}    timeout=${prompt_timeout}
     SSHKeywords.Flexible SSH Login    ${user}    ${password}
     ${stdout}    ${stderr}    SSHLibrary.Execute Command    ${cmd}    return_stderr=True
@@ -212,7 +211,6 @@ Run Command On Mininet
 Run Command On Controller
     [Arguments]    ${system}=${ODL_SYSTEM_IP}    ${cmd}=echo    ${user}=${ODL_SYSTEM_USER}    ${password}=${ODL_SYSTEM_PASSWORD}    ${prompt}=${ODL_SYSTEM_PROMPT}
     [Documentation]    Call Run Comand On Remote System, but with default values suitable for Controller machine.
-    BuiltIn.Log    ${password}
     BuiltIn.Run Keyword And Return    Run Command On Remote System    ${system}    ${cmd}    ${user}    ${password}    prompt=${prompt}
 
 Verify File Exists On Remote System