We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 282dc8c commit 0e7ba32Copy full SHA for 0e7ba32
setup_utils/start_sync_server.sh
@@ -22,7 +22,7 @@ wait_for_message
22
23
cd /app/backend/analytics_server
24
if [ "$ENVIRONMENT" == "prod" ]; then
25
- /opt/venv/bin/gunicorn -w 2 -b 0.0.0.0:$SYNC_SERVER_PORT --timeout 0 sync_app:app
+ /opt/venv/bin/gunicorn -w 2 -b 0.0.0.0:$SYNC_SERVER_PORT --timeout 0 --access-logfile '-' --error-logfile '-' sync_app:app
26
else
27
- /opt/venv/bin/gunicorn -w 2 -b 0.0.0.0:$SYNC_SERVER_PORT --timeout 0 --reload sync_app:app
+ /opt/venv/bin/gunicorn -w 2 -b 0.0.0.0:$SYNC_SERVER_PORT --timeout 0 --access-logfile '-' --error-logfile '-' --reload sync_app:app
28
fi
0 commit comments