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

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

     [ https://issues.apache.org/jira/browse/ARROW-16110?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kouhei Sutou resolved ARROW-16110.
----------------------------------
    Fix Version/s: 8.0.0
       Resolution: Fixed

Issue resolved by pull request 12788
[https://github.com/apache/arrow/pull/12788]

> [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
>            Assignee: Rok Mihevc
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 8.0.0
>
>          Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> 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)