1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00

fix guide example

This commit is contained in:
Nikolay Kim 2017-12-26 21:33:23 -08:00
parent 0d21c2da22
commit 5df5cc7374
2 changed files with 10 additions and 4 deletions

View File

@ -28,7 +28,13 @@ before_script:
- export PATH=$PATH:~/.cargo/bin
script:
- USE_SKEPTIC=1 cargo test --features=alpn
- |
if [[ "$TRAVIS_RUST_VERSION" == "nightly-2017-12-21" ]]; then
USE_SKEPTIC=1 cargo test --features=alpn
else
cargo test --features=alpn
fi
- |
if [[ "$TRAVIS_RUST_VERSION" == "beta" ]]; then
cd examples/diesel && cargo check && cd ../..

View File

@ -21,8 +21,8 @@ impl Actor for Ws {
}
/// Define Handler for ws::Message message
# impl StreamHandler<ws::Message> for WsRoute {}
impl Handler<ws::Message> for WsRoute {
# impl StreamHandler<ws::Message> for Ws {}
impl Handler<ws::Message> for Ws {
fn handle(&mut self, msg: ws::Message, ctx: &mut HttpContext<Self>) -> Response<Self, ws::Message>
{
match msg {
@ -37,7 +37,7 @@ impl Handler<ws::Message> for WsRoute {
fn main() {
Application::new()
.resource("/ws/", |r| r.f(|req| ws::start(req, WS)) // <- register websocket route
.resource("/ws/", |r| r.f(|req| ws::start(req, Ws))) // <- register websocket route
.finish();
}
```