1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-30 08:38:16 +02:00

Fix disconnection handling

This commit is contained in:
Nikolay Kim
2017-10-25 16:25:26 -07:00
parent da79981d90
commit 86583049fa
7 changed files with 188 additions and 87 deletions

View File

@@ -158,7 +158,7 @@ impl<A> Reply<A> where A: Actor + Route
},
ReplyItem::Actor(act) => {
ctx.set_actor(act);
Task::with_stream(ctx)
Task::with_context(ctx)
}
}
}