This commit is contained in:
Nikolay Kim 2024-03-22 22:33:30 +01:00
parent fbce7d70f0
commit ab584b034b
2 changed files with 22 additions and 25 deletions

View file

@ -1,7 +1,5 @@
use std::thread;
use signal_hook::consts::signal::*;
use crate::server::Server;
/// Different types of process signals
@ -26,6 +24,7 @@ pub(crate) fn start<T: Send + 'static>(srv: Server<T>) {
let _ = thread::Builder::new()
.name("ntex-server signals".to_string())
.spawn(move || {
use signal_hook::consts::signal::*;
use signal_hook::iterator::Signals;
let sigs = vec![SIGHUP, SIGINT, SIGTERM, SIGQUIT];

View file

@ -335,8 +335,7 @@ impl Accept {
ServerStatus::Ready
});
if self.backpressure {
if !on {
if self.backpressure && !on {
// handle backlog
while let Some(msg) = self.backlog.pop_front() {
if let Err(msg) = self.srv.process(msg) {
@ -358,8 +357,7 @@ impl Accept {
self.add_source(key);
}
}
}
} else if on {
} else if !self.backpressure && on {
self.backpressure = true;
for key in 0..self.sockets.len() {
// disable err timeout