exasol / bucketfs-python

BucketFS utilities for the Python programming language
https://exasol.github.io/bucketfs-python
MIT License
1 stars 1 forks source link

The SSL certificate verification control doesn't work #117

Closed ahsimb closed 4 months ago

ahsimb commented 4 months ago

There is now the verify parameter in the constructors of both the Service and the Bucket classes. However, when the bucket is accessed through the service, which is the conventional way of getting to it, the 'verify' parameter is not passed from the service to the bucket.

        return {
            name: Bucket(
                name=name,
                service=self._url,
                username=self._authenticator[name]["username"],
                password=self._authenticator[name]["password"],
                service_name=self._service_name
            )
            for name in buckets
        }