Rok Mihevc created ARROW-16110:
----------------------------------
Summary: [C++] GcsFileSystem::Make ignores IOContext
Key: ARROW-16110
URL: https://issues.apache.org/jira/browse/ARROW-16110
Project: Apache Arrow
Issue Type: Bug
Components: C++
Reporter: Rok Mihevc
Passed IO context is ignored and default context is used. See current function:
{code:cpp}
std::shared_ptr<GcsFileSystem> GcsFileSystem::Make(const GcsOptions& options,
const io::IOContext&
context) {
// Cannot use `std::make_shared<>` as the constructor is private.
return std::shared_ptr<GcsFileSystem>(
new GcsFileSystem(options, io::default_io_context()));
}
{code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)