Fix external configuration handling (#332)

This commit is contained in:
Nikolay Kim 2024-04-01 23:18:44 +03:00 committed by GitHub
parent 7e2e3d1730
commit cfc348764a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 21 additions and 16 deletions

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [1.0.5] - 2024-04-02
* Fix external configuration handling
## [1.0.4] - 2024-03-30 ## [1.0.4] - 2024-03-30
* Fix signals support #324 * Fix signals support #324

View file

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

View file

@ -193,15 +193,17 @@ impl FactoryService for ConfiguredService {
let mut services = mem::take(&mut rt.0.borrow_mut().services); let mut services = mem::take(&mut rt.0.borrow_mut().services);
let mut res = Vec::new(); let mut res = Vec::new();
while let Some(Some(svc)) = services.pop() { while let Some(svc) = services.pop() {
for entry in names.values() { if let Some(svc) = svc {
if entry.idx == services.len() { for entry in names.values() {
res.push(NetService { if entry.idx == services.len() {
pool: entry.pool, res.push(NetService {
tokens: entry.tokens.clone(), pool: entry.pool,
factory: svc, tokens: entry.tokens.clone(),
}); factory: svc,
break; });
break;
}
} }
} }
} }

View file

@ -107,6 +107,7 @@ impl ServiceFactory<ServerMessage> for StreamService {
for info in &self.services { for info in &self.services {
match info.factory.create(()).await { match info.factory.create(()).await {
Ok(svc) => { Ok(svc) => {
log::debug!("Constructed server service for {:?}", info.tokens);
services.push(svc); services.push(svc);
let idx = services.len() - 1; let idx = services.len() - 1;
for (token, tag) in &info.tokens { for (token, tag) in &info.tokens {
@ -123,12 +124,10 @@ impl ServiceFactory<ServerMessage> for StreamService {
} }
} }
let conns = MAX_CONNS_COUNTER.with(|conns| conns.priv_clone());
Ok(StreamServiceImpl { Ok(StreamServiceImpl {
tokens, tokens,
services, services,
conns, conns: MAX_CONNS_COUNTER.with(|conns| conns.priv_clone()),
}) })
} }
} }

View file

@ -90,9 +90,9 @@ impl<T> Worker<T> {
let _ = spawn(async move { let _ = spawn(async move {
log::info!("Starting worker {:?}", id); log::info!("Starting worker {:?}", id);
log::debug!("Creating server instance in {:?} worker", id); log::debug!("Creating server instance in {:?}", id);
let factory = cfg.create().await; let factory = cfg.create().await;
log::debug!("Server instance has been created in {:?} worker", id); log::debug!("Server instance has been created in {:?}", id);
match create(id, rx1, rx2, factory, avail_tx).await { match create(id, rx1, rx2, factory, avail_tx).await {
Ok((svc, wrk)) => { Ok((svc, wrk)) => {

View file

@ -64,7 +64,7 @@ ntex-service = "2.0.1"
ntex-macros = "0.1.3" ntex-macros = "0.1.3"
ntex-util = "1.0.1" ntex-util = "1.0.1"
ntex-bytes = "0.1.24" ntex-bytes = "0.1.24"
ntex-server = "1.0.3" ntex-server = "1.0.5"
ntex-h2 = "0.5.2" ntex-h2 = "0.5.2"
ntex-rt = "0.4.12" ntex-rt = "0.4.12"
ntex-io = "1.0.1" ntex-io = "1.0.1"