Skip to content

Commit

Permalink
Fixed spooler quite option handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Nov 16, 2017
1 parent 2d4e284 commit 322eba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uwsgiconf/options/spooler.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def set_basic_params(
:param str|unicode|list touch_reload: reload spoolers if the specified file is modified/touched
:param bool quiet: Do not be verbose with spooler tasks.
:param bool quiet: Do not log spooler related messages.
:param int process_count: Set the number of processes for spoolers.
Expand All @@ -49,7 +49,7 @@ def set_basic_params(
"""
self._set('touch-spoolers-reload', touch_reload, multi=True)
self._set('spooler-quiets', quiet, cast=bool)
self._set('spooler-quiet', quiet, cast=bool)
self._set('spooler-processes', process_count)
self._set('spooler-max-tasks', max_tasks)
self._set('spooler-ordered', order_tasks, cast=bool)
Expand Down

0 comments on commit 322eba3

Please sign in to comment.