src/bin/h2test.rs: removed

This test does no work anymore.
This commit is contained in:
Dietmar Maurer 2019-05-22 11:14:56 +02:00
parent 5a0b521809
commit de6742c04f
1 changed files with 0 additions and 39 deletions

View File

@ -1,39 +0,0 @@
use failure::*;
use futures::*;
use serde_json::json;
use proxmox_backup::client::*;
fn run() -> Result<(), Error> {
let host = "localhost";
let username = "root@pam";
let mut client = HttpClient::new(host, username)?;
let param = json!({"backup-type": "host", "backup-id": "test" });
let upgrade = client.h2upgrade("/api2/json/admin/datastore/store2/backup", Some(param));
let res = upgrade.and_then(|h2| {
println!("start http2");
let result1 = h2.get("test1", None);
let result2 = h2.get("test2", None);
result1.join(result2)
}).wait()?;
println!("GOT {:?}", res);
Ok(())
}
fn main() {
hyper::rt::run(futures::future::lazy(move || {
if let Err(err) = run() {
eprintln!("ERROR: {}", err);
}
Ok(())
}));
}