src/config/remote.rs: add fingerprint

This commit is contained in:
Dietmar Maurer
2020-01-25 09:48:39 +01:00
parent dcb8db66d9
commit 6afbe1d846
3 changed files with 20 additions and 1 deletions

View File

@ -476,7 +476,9 @@ pub fn complete_remote_datastore_name(_arg: &str, param: &HashMap<String, String
let client = HttpClient::new(
&remote.host,
&remote.userid,
Some(remote.password)
Some(remote.password),
remote.fingerprint,
false,
)?;
let mut rt = tokio::runtime::Runtime::new().unwrap();