mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-23 06:35:49 -07:00
Fix error messages
trying to unrwap these values from an error result makes things go boom
This commit is contained in:
parent
b1ac101749
commit
d527770102
1 changed files with 1 additions and 2 deletions
|
@ -694,8 +694,7 @@ impl ZeroIDC {
|
||||||
}
|
}
|
||||||
Err(res) => {
|
Err(res) => {
|
||||||
println!("error result: {}", res);
|
println!("error result: {}", res);
|
||||||
println!("hit url: {}", res.url().unwrap().as_str());
|
println!("hit url: {}", i.auth_endpoint.clone());
|
||||||
println!("Status: {}", res.status().unwrap());
|
|
||||||
println!("Post error: {}", res);
|
println!("Post error: {}", res);
|
||||||
i.exp_time = 0;
|
i.exp_time = 0;
|
||||||
i.running = false;
|
i.running = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue