config: there's no such thing as WEBSERVER_THREADS (#587)

The config option is CARAVEL_WORKERS. Bump example to 16 processes
to keep backward compatibility with the current default.
This commit is contained in:
Riccardo Magliocchetti 2016-06-10 01:44:13 +02:00 committed by Maxime Beauchemin
parent 8a579e2a2a
commit eb208b921c
2 changed files with 4 additions and 4 deletions

View File

@ -18,10 +18,10 @@ BASE_DIR = os.path.abspath(os.path.dirname(__file__))
# ---------------------------------------------------------
# Caravel specifix config
# Caravel specific config
# ---------------------------------------------------------
ROW_LIMIT = 50000
WEBSERVER_THREADS = 8
CARAVEL_WORKERS = 16
CARAVEL_WEBSERVER_PORT = 8088
CARAVEL_WEBSERVER_TIMEOUT = 60

View File

@ -88,10 +88,10 @@ To configure your application, you need to create a file (module)
of the parameters you can copy / paste in that configuration module: ::
#---------------------------------------------------------
# Caravel specifix config
# Caravel specific config
#---------------------------------------------------------
ROW_LIMIT = 5000
WEBSERVER_THREADS = 8
CARAVEL_WORKERS = 16
CARAVEL_WEBSERVER_PORT = 8088
#---------------------------------------------------------