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