Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rust to 2025-01-22 #3021

Merged
merged 18 commits into from
Jan 28, 2025
Prev Previous commit
Next Next commit
clippy vpn
meowjesty committed Jan 15, 2025
commit 7fda954964da465a30628258db372b230fb082be
6 changes: 2 additions & 4 deletions mirrord/vpn/src/agent.rs
Original file line number Diff line number Diff line change
@@ -42,8 +42,7 @@ impl VpnAgent {
_ => None,
},
)
.await
.map_err(VpnError::from)?
.await?
else {
return Err(VpnError::AgentUnexpectedResponse);
};
@@ -79,8 +78,7 @@ impl VpnAgent {
_ => None,
},
)
.await
.map_err(VpnError::from)?;
.await?;

match response {
Some(ServerVpn::NetworkConfiguration(network)) => Ok(network),