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

View file

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