diff options
Diffstat (limited to 'meta/lib/oeqa/utils')
| -rw-r--r-- | meta/lib/oeqa/utils/httpserver.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/httpserver.py b/meta/lib/oeqa/utils/httpserver.py index bd76f36468..7d12331453 100644 --- a/meta/lib/oeqa/utils/httpserver.py +++ b/meta/lib/oeqa/utils/httpserver.py | |||
| @@ -1,8 +1,9 @@ | |||
| 1 | import http.server | 1 | import http.server |
| 2 | import multiprocessing | 2 | import multiprocessing |
| 3 | import os | 3 | import os |
| 4 | from socketserver import ThreadingMixIn | ||
| 4 | 5 | ||
| 5 | class HTTPServer(http.server.HTTPServer): | 6 | class HTTPServer(ThreadingMixIn, http.server.HTTPServer): |
| 6 | 7 | ||
| 7 | def server_start(self, root_dir): | 8 | def server_start(self, root_dir): |
| 8 | import signal | 9 | import signal |
