Expose TetServer::stop() method

This commit is contained in:
Nikolay Kim 2024-07-16 21:02:02 +02:00
parent 1331a6eadb
commit 6aea5e54a7
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [2.2.0] - 2024-07-16
* Expose TetServer::stop() method
## [2.1.0] - 2024-06-27
* Shutdown service on error and on worker shutdown

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-server"
version = "2.1.0"
version = "2.2.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Server for ntex framework"
keywords = ["network", "framework", "async", "futures"]

View file

@ -118,7 +118,7 @@ impl TestServer {
}
/// Stop http server
fn stop(&mut self) {
pub fn stop(&self) {
self.system.stop();
}