Skip to content

Commit

Permalink
Increasing timeout for gunicorn
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Sep 10, 2015
1 parent 9741517 commit 8edf7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/bin/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def webserver(args):
'on host {args.hostname} and port '
'{args.port}...'.format(**locals()))
subprocess.Popen([
'gunicorn', '-w', str(args.threads), '-b',
'gunicorn', '-w', str(args.threads), '-t', '120', '-b',
args.hostname + ':' + str(args.port), 'airflow.www.app:app'])


Expand Down

0 comments on commit 8edf7b6

Please sign in to comment.