Skip to content

Commit

Permalink
Merge branch 'release_16.04' into release_16.07
Browse files Browse the repository at this point in the history
Conflicts:
	lib/galaxy/config.py
  • Loading branch information
nsoranzo committed Sep 6, 2017
2 parents 5a39d47 + dad5563 commit 4345d8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/galaxy/util/postfork.py
Expand Up @@ -7,8 +7,10 @@
# uwsgi-managed process.
try:
import uwsgi
if uwsgi.numproc:
if hasattr(uwsgi, "numproc"):
process_is_uwsgi = True
else:
process_is_uwsgi = False
except ImportError:
# This is not a uwsgi process, or something went horribly wrong.
process_is_uwsgi = False
Expand Down

0 comments on commit 4345d8e

Please sign in to comment.