Xuanwo commented on PR #6608:
URL: https://github.com/apache/opendal/pull/6608#issuecomment-3355325844

   > Seems the current registry supports only:
   
   People can pass by either in uri or in options:
   
   ```
   let op = Operator::from_uri("s3://test-bucket?region=\"us-east-1\"", 
[("virtual_host_style", "false")])?;
   ```
   
   For `endpoint`, it currently supports:
   
   ```
   let endpoint = "https://xxxx.minio.local";;
   let op = Operator::from_uri("s3://test-bucket", [("endpoint", endpoint)])?;
   ```
   
   But I think it can be extended to:
   
   ```
   let op = Operator::from_uri("s3://xxxx.minio.local/test-bucket", [])?;
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to