mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
chore(gui-client): don't warn on sign-out while raising tunnel (#7327)
All warnings triggered events in Sentry. This particular warning is of no concern, it simply means that the user clicked on "Sign out" while we were trying to set up the tunnel. Resolves: #7250.
This commit is contained in:
@@ -442,7 +442,7 @@ impl<'a, I: GuiIntegration> Controller<'a, I> {
|
||||
Status::Quitting => tracing::error!("Can't cancel sign-in while already quitting"),
|
||||
Status::TunnelReady{..} => tracing::error!("Can't cancel sign-in, the tunnel is already up. This is a logic error in the code."),
|
||||
Status::WaitingForTunnel { .. } => {
|
||||
tracing::warn!(
|
||||
tracing::debug!(
|
||||
"Connlib is already raising the tunnel, calling `sign_out` anyway"
|
||||
);
|
||||
self.sign_out().await?;
|
||||
|
||||
Reference in New Issue
Block a user