| 1280 | } |
| 1281 | |
| 1282 | Result<std::string> ResolveRegionUncached(const std::string& bucket) { |
| 1283 | ARROW_ASSIGN_OR_RAISE(auto client_lock, holder_->Lock()); |
| 1284 | return client_lock->GetBucketRegion(bucket); |
| 1285 | } |
| 1286 | |
| 1287 | protected: |
| 1288 | explicit RegionResolver(S3Options options) : builder_(std::move(options)) {} |
nothing calls this directly
no test coverage detected