1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-01 01:16:59 +02:00

Cleaned unnecessary Option<_> around ServerBuilder in server.rs/HttpServer (#863)

This commit is contained in:
Vlad Frolov
2019-05-23 15:21:02 +03:00
committed by Nikolay Kim
parent ded1e86e7e
commit 801cc2ed5d
2 changed files with 33 additions and 32 deletions

View File

@@ -9,6 +9,10 @@
* Add `test::TestRequest::set_json()` convenience method to automatically
serialize data and set header in test requests.
### Changes
* Drop an unnecessary `Option<_>` indirection around `ServerBuilder` from `HttpServer`. #863
### Fixed
* Clear http requests pool on app service drop #860