Skip to content

Commit

Permalink
config: there's no such thing as WEBSERVER_THREADS (#587)
Browse files Browse the repository at this point in the history
The config option is CARAVEL_WORKERS. Bump example to 16 processes
to keep backward compatibility with the current default.
  • Loading branch information
xrmx authored and mistercrunch committed Jun 9, 2016
1 parent 8a579e2 commit eb208b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions caravel/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@


# ---------------------------------------------------------
# Caravel specifix config
# Caravel specific config
# ---------------------------------------------------------
ROW_LIMIT = 50000
WEBSERVER_THREADS = 8
CARAVEL_WORKERS = 16

CARAVEL_WEBSERVER_PORT = 8088
CARAVEL_WEBSERVER_TIMEOUT = 60
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
#---------------------------------------------------------
Expand Down

0 comments on commit eb208b9

Please sign in to comment.