mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 19:10:24 +00:00
💄
This commit is contained in:
parent
ec19f0f8e9
commit
c4dde0f4e2
1 changed files with 1 additions and 2 deletions
|
@ -663,7 +663,6 @@ impl Client {
|
|||
self.set_status(Status::Reconnecting, cx);
|
||||
}
|
||||
|
||||
let mut timeout = cx.background().timer(CONNECTION_TIMEOUT).fuse();
|
||||
futures::select_biased! {
|
||||
connection = self.establish_connection(&credentials, cx).fuse() => {
|
||||
match connection {
|
||||
|
@ -696,7 +695,7 @@ impl Client {
|
|||
}
|
||||
}
|
||||
}
|
||||
_ = timeout => {
|
||||
_ = cx.background().timer(CONNECTION_TIMEOUT).fuse() => {
|
||||
self.set_status(Status::ConnectionError, cx);
|
||||
Err(anyhow!("timed out trying to establish connection"))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue