Try without threading

master
Bob Mottram 2019-08-15 10:53:17 +01:00
parent be1a061122
commit 6cab61f69c
1 changed files with 3 additions and 2 deletions

View File

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