changed variables to use proper naming conventions
This commit is contained in:
parent
deab81483e
commit
d6de1ea5c4
1 changed files with 5 additions and 5 deletions
|
@ -16,12 +16,12 @@ from cherrypy import wsgiserver
|
||||||
from django.core.handlers.wsgi import WSGIHandler
|
from django.core.handlers.wsgi import WSGIHandler
|
||||||
|
|
||||||
|
|
||||||
def run_app(host, port, threadCount):
|
def run_app(host, port, thread_count):
|
||||||
server = wsgiserver.CherryPyWSGIServer(
|
server = wsgiserver.CherryPyWSGIServer(
|
||||||
(host, port),
|
(host, port),
|
||||||
WSGIHandler(),
|
WSGIHandler(),
|
||||||
server_name='tornado-pyvows',
|
server_name='tornado-pyvows',
|
||||||
numthreads = threadCount
|
numthreads = thread_count
|
||||||
)
|
)
|
||||||
|
|
||||||
my_thread = current_thread()
|
my_thread = current_thread()
|
||||||
|
@ -35,11 +35,11 @@ def run_app(host, port, threadCount):
|
||||||
class DjangoServer(object):
|
class DjangoServer(object):
|
||||||
|
|
||||||
def __init__(self, host, port):
|
def __init__(self, host, port):
|
||||||
self.host = host
|
self.host = host
|
||||||
self.port = port
|
self.port = port
|
||||||
|
|
||||||
def start(self, settings, threadCount=1):
|
def start(self, settings, thread_count=1):
|
||||||
self.thr = Thread(target=run_app, args=(self.host, self.port, threadCount))
|
self.thr = Thread(target= run_app, args=(self.host, self.port, thread_count))
|
||||||
self.thr.daemon = True
|
self.thr.daemon = True
|
||||||
self.thr.settings = {}
|
self.thr.settings = {}
|
||||||
for k, v in settings.iteritems():
|
for k, v in settings.iteritems():
|
||||||
|
|
Reference in a new issue