Framework update

This commit is contained in:
stephb9959
2022-01-10 09:06:39 -08:00
parent 7eaa36f32e
commit c2d2e47cae
2 changed files with 6 additions and 3 deletions

2
build
View File

@@ -1 +1 @@
94
95

View File

@@ -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")
{
}
};