From c2d2e47caee11eeac8c29cfeaa3033db2e448fd4 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Mon, 10 Jan 2022 09:06:39 -0800 Subject: [PATCH] Framework update --- build | 2 +- src/framework/MicroService.h | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/build b/build index bd753cc..90be1cd 100644 --- a/build +++ b/build @@ -1 +1 @@ -94 \ No newline at end of file +95 \ No newline at end of file diff --git a/src/framework/MicroService.h b/src/framework/MicroService.h index fdbaac3..11484e2 100644 --- a/src/framework/MicroService.h +++ b/src/framework/MicroService.h @@ -2585,7 +2585,8 @@ namespace OpenWifi { RESTAPI_GenericServer Server_; RESTAPI_ExtServer() noexcept: - SubSystemServer("RESTAPI_ExtServer", "RESTAPIServer", "openwifi.restapi") + SubSystemServer("RESTAPI_ExtServer", "RESTAPIServer", "openwifi.restapi"), + Pool_("RESTAPI_ExternalPool") { } }; @@ -2673,7 +2674,9 @@ namespace OpenWifi { Poco::ThreadPool Pool_; RESTAPI_GenericServer Server_; - RESTAPI_IntServer() noexcept: SubSystemServer("RESTAPI_IntServer", "REST-ISRV", "openwifi.internal.restapi") + RESTAPI_IntServer() noexcept: + SubSystemServer("RESTAPI_IntServer", "REST-ISRV", "openwifi.internal.restapi"), + Pool_("RESTAPI_IntServerPool") { } };