stephb9959
2022-11-17 21:26:50 -08:00
parent 29736da681
commit a9b3cb9821
2 changed files with 5 additions and 4 deletions

2
build
View File

@@ -1 +1 @@
13
14

View File

@@ -89,7 +89,8 @@ namespace OpenWifi {
GoogleApiKey_ = MicroServiceConfigGetString("google.apikey","");
GeoCodeEnabled_ = !GoogleApiKey_.empty();
ReactorThread_.start(Reactor_);
Thr_.start(*this);
ReactorThread_.setName("ws:ui-reactor");
// Thr_.start(*this);
return 0;
};
@@ -100,8 +101,8 @@ namespace OpenWifi {
Reactor_.stop();
ReactorThread_.join();
Running_ = false;
Thr_.wakeUp();
Thr_.join();
// Thr_.wakeUp();
// Thr_.join();
poco_information(Logger(),"Stopped...");
}
};