diff options
author | 2017-03-09 06:55:30 -0500 | |
---|---|---|
committer | 2017-03-24 09:36:45 +0000 | |
commit | 6634f2aa7738e94f78735f3a20827fabf3f2c5fa (patch) | |
tree | 63e8a7f213b5a37e2731f1feebcb19de8e46cffe /baro_tests/config_server.py | |
parent | 5649793d2037d6f26211be4035e28842ebb3e737 (diff) |
Fix for Functest 'BarometerCollectd ERROR - Private key file not found'
This patch addresses the blocking Functest issue regarding the ssh keys.
It eliminates the need of using the baro_utils/get_ssh_keys.sh script.
Change-Id: I4499e48257ddab955ae6694c2ece0bff5e877cad
Signed-off-by: Calin Gherghe <calin.gherghe@intel.com>
(cherry picked from commit 1573180333a8b1a49dc21f6412f53fff01fe351e)
Diffstat (limited to 'baro_tests/config_server.py')
-rw-r--r-- | baro_tests/config_server.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/baro_tests/config_server.py b/baro_tests/config_server.py index 4d649269..358a8ffe 100644 --- a/baro_tests/config_server.py +++ b/baro_tests/config_server.py @@ -69,8 +69,7 @@ class ConfigServer(object): self.__private_key_file = ID_RSA_PATH if not os.path.isfile(self.__private_key_file): self.__logger.error( - "Private key file '{}'".format(self.__private_key_file) - + " not found. Please try to run {} script.".format(SSH_KEYS_SCRIPT)) + "Private key file '{}' not found.".format(self.__private_key_file)) raise IOError("Private key file '{}' not found.".format(self.__private_key_file)) # get list of available nodes |