mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 15:41:17 +00:00
fix websocket example
This commit is contained in:
parent
58f85658bd
commit
2b74fbf586
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ impl StreamHandler<Message, WsClientError> for ChatClient {
|
|||
println!("Connected");
|
||||
}
|
||||
|
||||
fn finished(&mut self, err: Option<WsClientError>, ctx: &mut Context<Self>) {
|
||||
fn finished(&mut self, ctx: &mut Context<Self>) {
|
||||
println!("Server disconnected");
|
||||
ctx.stop()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue