oeqa/utils/httpserver.py: HTTPServer enable thread connection handling

HTTPServer now supports multiple connections using Python threads.

(From OE-Core rev: 1d45b7bd611b900bc00530144ec0634307b1314f)

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Aníbal Limón 2016-08-05 15:30:30 -05:00 committed by Richard Purdie
parent 262c81e3ca
commit feb125eb17
1 changed files with 2 additions and 1 deletions

View File

@ -1,8 +1,9 @@
import http.server
import multiprocessing
import os
from socketserver import ThreadingMixIn
class HTTPServer(http.server.HTTPServer):
class HTTPServer(ThreadingMixIn, http.server.HTTPServer):
def server_start(self, root_dir):
import signal