Does Daft S3Config has support for virtual address...
# general
t
Does Daft S3Config has support for virtual addressing?
s
Like a different addressing style?
t
s
ah i see! Currently daft defaults on using virtual addressing unless a custom endpoint_url is specified
Copy code
let builder = match &config.endpoint_url {
        None => builder,
        Some(endpoint) => builder.endpoint_url(endpoint).force_path_style(true),
    };
This was the fix we implemented to work on old ceph s3 endpoints 😉
I'll make a PR to override this
In the latest release!