Oct 27 04:31:04.719 INFO checking fuchsnj/actix_bug against try#19f01b935b91481fd445b16b533d2f87661bf12e for pr-55192-2 Oct 27 04:31:04.720 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192-2/worker-0/try#19f01b935b91481fd445b16b533d2f87661bf12e:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-0/pr-55192-2/try#19f01b935b91481fd445b16b533d2f87661bf12e:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +19f01b935b91481fd445b16b533d2f87661bf12e-alt check --frozen --all --all-targets" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 27 04:31:05.256 INFO blam! f8a32ba869d7eec4c376c5e69ef1f115b58e71c046283662802614afff2a16f1 Oct 27 04:31:05.259 INFO running `"docker" "start" "-a" "f8a32ba869d7eec4c376c5e69ef1f115b58e71c046283662802614afff2a16f1"` Oct 27 04:31:07.303 INFO kablam! usermod: no changes Oct 27 04:31:07.491 INFO kablam! Compiling num-traits v0.1.41 Oct 27 04:31:07.495 INFO kablam! Checking crossbeam v0.3.0 Oct 27 04:31:07.495 INFO kablam! Compiling rand v0.3.20 Oct 27 04:31:07.495 INFO kablam! Compiling semver v0.8.0 Oct 27 04:31:07.495 INFO kablam! Compiling actix_derive v0.1.1 Oct 27 04:31:07.495 INFO kablam! Checking uuid v0.5.1 Oct 27 04:31:07.495 INFO kablam! Compiling backtrace-sys v0.1.16 Oct 27 04:31:07.495 INFO kablam! Compiling serde_derive_internals v0.19.0 Oct 27 04:31:10.269 INFO kablam! Compiling backtrace v0.3.5 Oct 27 04:31:11.571 INFO kablam! Checking mio-uds v0.6.4 Oct 27 04:31:17.227 INFO kablam! Compiling serde_json v1.0.9 Oct 27 04:31:17.228 INFO kablam! Checking tokio-signal v0.1.3 Oct 27 04:31:17.432 INFO kablam! Compiling error-chain v0.11.0 Oct 27 04:31:18.191 INFO kablam! Compiling serde_derive v1.0.27 Oct 27 04:31:19.259 INFO kablam! Compiling tempdir v0.3.5 Oct 27 04:31:39.539 INFO kablam! Compiling cargo_metadata v0.3.3 Oct 27 04:31:42.963 INFO kablam! Compiling skeptic v0.13.2 Oct 27 04:31:47.564 INFO kablam! Compiling actix v0.4.3 Oct 27 04:31:53.485 INFO kablam! Checking actix_bug v0.1.0 (/source) Oct 27 04:31:55.656 INFO kablam! warning: unused imports: `Arbiter`, `SyncAddress`, `msgs` Oct 27 04:31:55.656 INFO kablam! --> src/main.rs:3:13 Oct 27 04:31:55.656 INFO kablam! | Oct 27 04:31:55.657 INFO kablam! 3 | use actix::{msgs, Actor, Address, Arbiter, Context, System, Handler, ResponseType, ActorFuture, AsyncContext, SyncAddress}; Oct 27 04:31:55.657 INFO kablam! | ^^^^ ^^^^^^^ ^^^^^^^^^^^ Oct 27 04:31:55.657 INFO kablam! | Oct 27 04:31:55.657 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 27 04:31:55.657 INFO kablam! Oct 27 04:31:55.737 INFO kablam! warning: unused variable: `addr` Oct 27 04:31:55.737 INFO kablam! --> src/main.rs:49:6 Oct 27 04:31:55.738 INFO kablam! | Oct 27 04:31:55.738 INFO kablam! 49 | let addr: Address<_> = MyActor.start(); Oct 27 04:31:55.738 INFO kablam! | ^^^^ help: consider using `_addr` instead Oct 27 04:31:55.739 INFO kablam! | Oct 27 04:31:55.739 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 27 04:31:55.740 INFO kablam! Oct 27 04:31:55.740 INFO kablam! warning: unused variable: `ctx` Oct 27 04:31:55.741 INFO kablam! --> src/main.rs:20:74 Oct 27 04:31:55.741 INFO kablam! | Oct 27 04:31:55.741 INFO kablam! 20 | ctx.spawn(wrap_future(addr.upgrade()).and_then(move |sync_address, _, ctx| { Oct 27 04:31:55.742 INFO kablam! | ^^^ help: consider using `_ctx` instead Oct 27 04:31:55.742 INFO kablam! Oct 27 04:31:55.742 INFO kablam! warning: unused variable: `actor` Oct 27 04:31:55.742 INFO kablam! --> src/main.rs:14:70 Oct 27 04:31:55.742 INFO kablam! | Oct 27 04:31:55.742 INFO kablam! 14 | ctx.spawn(wrap_future(addr.upgrade()).and_then(move |sync_address, actor: &mut MyActor, ctx: &mut Context| { Oct 27 04:31:55.742 INFO kablam! | ^^^^^ help: consider using `_actor` instead Oct 27 04:31:55.742 INFO kablam! Oct 27 04:31:55.742 INFO kablam! warning: unused variable: `msg` Oct 27 04:31:55.742 INFO kablam! --> src/main.rs:40:23 Oct 27 04:31:55.742 INFO kablam! | Oct 27 04:31:55.742 INFO kablam! 40 | fn handle(&mut self, msg: Message, ctx: &mut Self::Context) -> () { Oct 27 04:31:55.742 INFO kablam! | ^^^ help: consider using `_msg` instead Oct 27 04:31:55.742 INFO kablam! Oct 27 04:31:55.742 INFO kablam! warning: unused variable: `ctx` Oct 27 04:31:55.742 INFO kablam! --> src/main.rs:40:37 Oct 27 04:31:55.742 INFO kablam! | Oct 27 04:31:55.742 INFO kablam! 40 | fn handle(&mut self, msg: Message, ctx: &mut Self::Context) -> () { Oct 27 04:31:55.742 INFO kablam! | ^^^ help: consider using `_ctx` instead Oct 27 04:31:55.742 INFO kablam! Oct 27 04:31:55.831 INFO kablam! warning: unused imports: `Arbiter`, `SyncAddress`, `msgs` Oct 27 04:31:55.831 INFO kablam! --> src/main.rs:3:13 Oct 27 04:31:55.831 INFO kablam! | Oct 27 04:31:55.831 INFO kablam! 3 | use actix::{msgs, Actor, Address, Arbiter, Context, System, Handler, ResponseType, ActorFuture, AsyncContext, SyncAddress}; Oct 27 04:31:55.831 INFO kablam! | ^^^^ ^^^^^^^ ^^^^^^^^^^^ Oct 27 04:31:55.831 INFO kablam! | Oct 27 04:31:55.831 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 27 04:31:55.831 INFO kablam! Oct 27 04:31:55.891 INFO kablam! warning: unused variable: `addr` Oct 27 04:31:55.891 INFO kablam! --> src/main.rs:49:6 Oct 27 04:31:55.891 INFO kablam! | Oct 27 04:31:55.891 INFO kablam! 49 | let addr: Address<_> = MyActor.start(); Oct 27 04:31:55.891 INFO kablam! | ^^^^ help: consider using `_addr` instead Oct 27 04:31:55.891 INFO kablam! | Oct 27 04:31:55.891 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 27 04:31:55.891 INFO kablam! Oct 27 04:31:55.893 INFO kablam! warning: unused variable: `ctx` Oct 27 04:31:55.893 INFO kablam! --> src/main.rs:20:74 Oct 27 04:31:55.893 INFO kablam! | Oct 27 04:31:55.893 INFO kablam! 20 | ctx.spawn(wrap_future(addr.upgrade()).and_then(move |sync_address, _, ctx| { Oct 27 04:31:55.893 INFO kablam! | ^^^ help: consider using `_ctx` instead Oct 27 04:31:55.893 INFO kablam! Oct 27 04:31:55.894 INFO kablam! warning: unused variable: `actor` Oct 27 04:31:55.894 INFO kablam! --> src/main.rs:14:70 Oct 27 04:31:55.894 INFO kablam! | Oct 27 04:31:55.894 INFO kablam! 14 | ctx.spawn(wrap_future(addr.upgrade()).and_then(move |sync_address, actor: &mut MyActor, ctx: &mut Context| { Oct 27 04:31:55.894 INFO kablam! | ^^^^^ help: consider using `_actor` instead Oct 27 04:31:55.895 INFO kablam! Oct 27 04:31:55.895 INFO kablam! warning: unused variable: `msg` Oct 27 04:31:55.896 INFO kablam! --> src/main.rs:40:23 Oct 27 04:31:55.896 INFO kablam! | Oct 27 04:31:55.897 INFO kablam! 40 | fn handle(&mut self, msg: Message, ctx: &mut Self::Context) -> () { Oct 27 04:31:55.897 INFO kablam! | ^^^ help: consider using `_msg` instead Oct 27 04:31:55.897 INFO kablam! Oct 27 04:31:55.898 INFO kablam! warning: unused variable: `ctx` Oct 27 04:31:55.898 INFO kablam! --> src/main.rs:40:37 Oct 27 04:31:55.898 INFO kablam! | Oct 27 04:31:55.899 INFO kablam! 40 | fn handle(&mut self, msg: Message, ctx: &mut Self::Context) -> () { Oct 27 04:31:55.899 INFO kablam! | ^^^ help: consider using `_ctx` instead Oct 27 04:31:55.899 INFO kablam! Oct 27 04:31:55.951 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 48.63s Oct 27 04:31:55.959 INFO kablam! su: No module specific data is present Oct 27 04:31:57.499 INFO running `"docker" "rm" "-f" "f8a32ba869d7eec4c376c5e69ef1f115b58e71c046283662802614afff2a16f1"` Oct 27 04:31:57.875 INFO blam! f8a32ba869d7eec4c376c5e69ef1f115b58e71c046283662802614afff2a16f1