| 109 | } |
| 110 | |
| 111 | void MakeFileSystem() { |
| 112 | options_.ConfigureAccessKey(minio_->access_key(), minio_->secret_key()); |
| 113 | options_.scheme = minio_->scheme(); |
| 114 | if (!region_.empty()) { |
| 115 | options_.region = region_; |
| 116 | } |
| 117 | options_.endpoint_override = minio_->connect_string(); |
| 118 | ASSERT_OK_AND_ASSIGN(fs_, S3FileSystem::Make(options_)); |
| 119 | } |
| 120 | |
| 121 | /// Set up bucket if it doesn't exist. |
| 122 | /// |
no test coverage detected