diff options
author | Yaron Yogev <yaronyogev@gmail.com> | 2017-08-23 14:12:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-23 14:12:01 +0000 |
commit | 2b7d3add81ac79e39d7cef6e7ccdac4e00dcbf77 (patch) | |
tree | 07997d4b08506f3938d791972a02ffb59bdedff5 /app/discover | |
parent | 3abb112a58ea4b9d8229ce628b72a5a0b66ec54f (diff) | |
parent | d4b42e52c4a4277e2c145f090b486c6a7ca4c306 (diff) |
Merge "add -q to ssh to ignore warnnings"
Diffstat (limited to 'app/discover')
-rw-r--r-- | app/discover/fetchers/cli/cli_access.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/discover/fetchers/cli/cli_access.py b/app/discover/fetchers/cli/cli_access.py index 24f2975..f745de8 100644 --- a/app/discover/fetchers/cli/cli_access.py +++ b/app/discover/fetchers/cli/cli_access.py @@ -18,7 +18,7 @@ from utils.ssh_conn import SshConn class CliAccess(BinaryConverter, Fetcher): connections = {} - ssh_cmd = "ssh -o StrictHostKeyChecking=no " + ssh_cmd = "ssh -q -o StrictHostKeyChecking=no " call_count_per_con = {} max_call_count_per_con = 100 cache_lifetime = 60 # no. of seconds to cache results |