diff options
author | softwarefactory-project-zuul[bot] <softwarefactory-project-zuul[bot]@users.noreply.github.com> | 2019-03-19 13:08:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-19 13:08:50 +0100 |
commit | 3d9a47f0d90f57e0bf2cafdd1bc421d423e655f3 (patch) | |
tree | 2950cf352c675c29d37f973d66bb96cf8d605a1e /installer | |
parent | Merge pull request #3439 from beeankha/notification_doc (diff) | |
parent | Makes daphne websocket_timeout infinite. (diff) | |
download | awx-3d9a47f0d90f57e0bf2cafdd1bc421d423e655f3.tar.xz awx-3d9a47f0d90f57e0bf2cafdd1bc421d423e655f3.zip |
Merge pull request #3424 from falencastro/devel
Makes daphne websocket_timeout infinite.
Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
Diffstat (limited to 'installer')
-rw-r--r-- | installer/roles/image_build/files/supervisor.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/roles/image_build/files/supervisor.conf b/installer/roles/image_build/files/supervisor.conf index cfcaf5ebe9..1409b8b2c2 100644 --- a/installer/roles/image_build/files/supervisor.conf +++ b/installer/roles/image_build/files/supervisor.conf @@ -25,7 +25,7 @@ stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0 [program:daphne] -command = /var/lib/awx/venv/awx/bin/daphne -b 127.0.0.1 -p 8051 awx.asgi:channel_layer +command = /var/lib/awx/venv/awx/bin/daphne -b 127.0.0.1 -p 8051 --websocket_timeout -1 awx.asgi:channel_layer directory = /var/lib/awx autostart = true autorestart = true |