From 10158ea3f1833cff38ad8917d44c7cbbef13d904 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Mon, 15 May 2017 14:47:41 -0400 Subject: [PATCH] Add another suggestion from matthewjasper --- second-edition/src/ch20-06-graceful-shutdown-and-cleanup.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/second-edition/src/ch20-06-graceful-shutdown-and-cleanup.md b/second-edition/src/ch20-06-graceful-shutdown-and-cleanup.md index b07879e79..8afb4b799 100644 --- a/second-edition/src/ch20-06-graceful-shutdown-and-cleanup.md +++ b/second-edition/src/ch20-06-graceful-shutdown-and-cleanup.md @@ -576,6 +576,9 @@ project, here are some ideas: - Add tests of the library's functionality - Change calls to `unwrap` to more robust error handling - Use `ThreadPool` to perform some other task rather than serving web requests +- Find a thread pool crate on crates.io and implement a similar web server + using the crate instead and compare its API and robustness to the thread pool + we implemented ## Summary