Hi,
thanks for this great docker composition of cKAN.
When running the stack and trying to upload/preview a csv file I do see a warning in datapusher logs that it is missing --enable--threads on uWSGI startup
|
"uwsgi --plugins=http,python --http=0.0.0.0:8800 --socket=/tmp/uwsgi.sock --ini=`echo ${APP_DIR}`/datapusher-uwsgi.ini --wsgi-file=`echo ${APP_DIR}`/datapusher.wsgi"] |
After adding the option:
`uwsgi --plugins=http,python --http=0.0.0.0:8800 --socket=/tmp/uwsgi.sock --enable-threads --ini=`echo ${APP_DIR}`/datapusher-uwsgi.ini --wsgi-file=`echo ${APP_DIR}`/datapusher.wsgi"]`
The preview of CSV files in a datatable preview works nicely.
Thought I leave this information for others or devs in case the current is not intendent.
Hi,
thanks for this great docker composition of cKAN.
When running the stack and trying to upload/preview a csv file I do see a warning in datapusher logs that it is missing
--enable--threadson uWSGI startupdocker-ckan/datapusher/Dockerfile
Line 56 in 4b4e21b
After adding the option:
The preview of CSV files in a datatable preview works nicely.
Thought I leave this information for others or devs in case the current is not intendent.