We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently osaka's s3 storage class is hardcoded to write to s3 with the https protocol: https://github.com/hysds/osaka/blob/develop/osaka/storage/s3.py#L70 but if we're running a local minio server then using https will result in an SSL error:
s3
https
botocore.exceptions.SSLError: SSL validation failed for https://minio:9000/datasets [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1129)
will look into finding a way to make this configurable, either through celeryconfig.py or other means
celeryconfig.py
the previous change can be tracked here: #20
The text was updated successfully, but these errors were encountered:
DustinKLo
No branches or pull requests
currently osaka's
s3
storage class is hardcoded to write to s3 with thehttps
protocol: https://github.com/hysds/osaka/blob/develop/osaka/storage/s3.py#L70but if we're running a local minio server then using
https
will result in an SSL error:will look into finding a way to make this configurable, either through
celeryconfig.py
or other meansthe previous change can be tracked here: #20
The text was updated successfully, but these errors were encountered: