1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 11:22:41 +01:00

fw/SSHConnection: Deprecated parameters for Parimiko implementation

Deprecate parameters for the new implementation of the SSHConnection
based on Parimiko.
This commit is contained in:
Marc Bonnici
2020-01-30 19:02:03 +00:00
parent d0f099700a
commit 62ca7c0c36
2 changed files with 23 additions and 15 deletions

View File

@@ -314,7 +314,7 @@ class ConfigurationPoint(object):
def validate(self, obj, check_mandatory=True):
value = getattr(obj, self.name, None)
if self.deprecated:
msg = 'Depreciated parameter supplied for "{}" in "{}". Config will be ignored.'
msg = 'Depreciated parameter supplied for "{}" in "{}". The value will be ignored.'
logger.warning(msg.format(self.name, obj.name))
return
if value is not None: