Common: Get rid of Executor.cpp/h.

There was only one implementation.
This commit is contained in:
Henrik Rydgård
2021-04-30 22:33:34 -07:00
committed by Unknown W. Brackets
parent 8c72cc119e
commit e6aa841b78
12 changed files with 25 additions and 79 deletions
+1 -1
View File
@@ -249,7 +249,7 @@ static void ForwardDebuggerRequest(const http::Request &request) {
static void ExecuteWebServer() {
setCurrentThreadName("HTTPServer");
auto http = new http::Server(new threading::NewThreadExecutor());
auto http = new http::Server(new NewThreadExecutor());
http->RegisterHandler("/", &HandleListing);
// This lists all the (current) recent ISOs.
http->SetFallbackHandler(&HandleFallback);