move the uwsgi master FIFO from /tmp/awxfifo to /var/lib/awx/awxfifo

Resolves #4900
This commit is contained in:
Ryan Petrello
2017-01-25 16:36:26 -05:00
parent d025ac9027
commit f061505895
2 changed files with 2 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ def _uwsgi_reload():
# http://uwsgi-docs.readthedocs.io/en/latest/MasterFIFO.html#available-commands
logger.warn('Initiating uWSGI chain reload of server')
TRIGGER_CHAIN_RELOAD = 'c'
with open('/tmp/awxfifo', 'w') as awxfifo:
with open('/var/lib/awx/awxfifo', 'w') as awxfifo:
awxfifo.write(TRIGGER_CHAIN_RELOAD)