File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 37
37
if [ " $# " -ne 0 ]; then
38
38
exec " $@ "
39
39
elif [ " $SUPERSET_ENV " = " development" ]; then
40
- celery worker --app=superset.sql_lab:celery_app --logfile=/tmp/celery.log --loglevel=INFO -- pool=gevent -Ofair &
40
+ celery worker --app=superset.sql_lab:celery_app --pool=gevent -Ofair &
41
41
# In development mode, the UI will be served by `webpack-dev-server` instead of by `Flask`
42
42
# `webpack-dev-server` will serve the UI from the port 8088, and it will proxy
43
43
# non-asset requests to `Flask`, wich is listening at the port 8081
@@ -46,7 +46,7 @@ elif [ "$SUPERSET_ENV" = "development" ]; then
46
46
(cd superset/assets/ && npm run dev-server -- --host=0.0.0.0 --port=8088 --supersetPort=8081) &
47
47
FLASK_ENV=development FLASK_APP=superset:app flask run -p 8081 --with-threads --reload --debugger --host=0.0.0.0
48
48
elif [ " $SUPERSET_ENV " = " production" ]; then
49
- celery worker --app=superset.sql_lab:celery_app --logfile=/tmp/celery.log --loglevel=INFO -- pool=gevent -Ofair &
49
+ celery worker --app=superset.sql_lab:celery_app --pool=gevent -Ofair &
50
50
gunicorn --bind 0.0.0.0:8088 \
51
51
--workers $(( 2 * $(getconf _NPROCESSORS_ONLN) + 1 )) \
52
52
--timeout 300 \
You can’t perform that action at this time.
0 commit comments