You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a ComplexInput with support_formats=[Format("text/csv", extension=".csv")], pywps is unable to read the csv file when the process is running from a docker container.
Environment
operating system: ubuntu-20.04
Python version: 3.8
PyWPS version: 4.2.10
source/distribution
git clone
Debian
PyPI
zip/tar.gz
other (please specify):
Additional Information
We have checked that the csv with the mimetypes package:
Description
When using a
ComplexInput
withsupport_formats=[Format("text/csv", extension=".csv")]
,pywps
is unable to read the csv file when the process is running from a docker container.Environment
ubuntu-20.04
3.8
4.2.10
Additional Information
We have checked that the
csv
with themimetypes
package:There is no encoding listed and by the time the input is accesses with a
csv
reader it is a bytes stream (with an illegal start byte).The text was updated successfully, but these errors were encountered: