datopian / ckanext-blob-storage

CKAN extension to offload blob storage to cloud storage providers (S3, GCS, Azure etc).
http://tech.datopian.com/blob-storage/
MIT License
14 stars 4 forks source link

Fix donwloads on Python 3. Make sure that the auth token is a str #61

Closed amercader closed 3 years ago

amercader commented 3 years ago

On py3 the JWT token is a bytes object and if sent as is it gets sent as b'exdf...'. Giftless can't decode it and the download fails. This change ensures that the token is a str object both in py2 and py3