From 9f1fa51a8332dab252dc98eea966b91565665877 Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Sat, 26 May 2018 22:20:39 +0800 Subject: [PATCH] Add missing --no-pid (#11) https://github.com/mitsuhiko/systemfd#usage-with-actix-web--cargo-watch-and-listenfd From systemfd: > And then run it (don't forget --no-pid): --- content/docs/autoreload.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/autoreload.md b/content/docs/autoreload.md index ceafcb0..b924785 100644 --- a/content/docs/autoreload.md +++ b/content/docs/autoreload.md @@ -72,5 +72,5 @@ fn main() { To now run the development server invoke this command: ``` -systemfd -s http::3000 -- cargo watch -x run +systemfd --no-pid -s http::3000 -- cargo watch -x run ```