Back to threading

master
Bob Mottram 2019-08-15 13:01:56 +01:00
parent 27b4e8f3ac
commit 2403da5a5a
1 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@ __maintainer__ = "Bob Mottram"
__email__ = "bob@freedombone.net"
__status__ = "Production"
from http.server import BaseHTTPRequestHandler,ThreadingHTTPServer,HTTPServer
from http.server import BaseHTTPRequestHandler,ThreadingHTTPServer
#import socketserver
import commentjson
import json
@ -2727,8 +2727,7 @@ def runDaemon(projectVersion, \
return
serverAddress = ('', proxyPort)
httpd = HTTPServer(serverAddress, PubServer)
#httpd = ThreadingHTTPServer(serverAddress, PubServer)
httpd = ThreadingHTTPServer(serverAddress, PubServer)
# max POST size of 10M
httpd.projectVersion=projectVersion
httpd.maxPostLength=1024*1024*10