You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Rok Mihevc (Jira)" <ji...@apache.org> on 2022/04/04 14:17:00 UTC

[jira] [Created] (ARROW-16110) [C++] GcsFileSystem::Make ignores IOContext

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)