Skip to content

Commit

Permalink
Merge branch 'master' into forwarded_allow_ips_env
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethreitz committed Feb 11, 2016
2 parents a669867 + e59f7ad commit 845545a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gunicorn/config.py
Expand Up @@ -539,7 +539,7 @@ class Workers(Setting):
meta = "INT"
validator = validate_pos_int
type = int
default = int(os.environ.get('WEB_CONCURRENCY', 1))
default = int(os.environ.get("WEB_CONCURRENCY", 1))
desc = """\
The number of worker processes for handling requests.
Expand All @@ -548,7 +548,7 @@ class Workers(Setting):
application's work load.
By default, the value of the ``WEB_CONCURRENCY`` environment variable.
If it is not defined, the default is 1.
If it is not defined, the default is ``1``.
"""


Expand Down Expand Up @@ -1228,7 +1228,7 @@ class EnableStdioInheritance(Setting):
default = False
action = "store_true"
desc = """\
Enable stdio inheritance
Enable stdio inheritance.
Enable inheritance for stdio file descriptors in daemon mode.
Expand Down

0 comments on commit 845545a

Please sign in to comment.