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

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

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

ASF GitHub Bot updated ARROW-16110:
-----------------------------------
    Labels: pull-request-available  (was: )

> [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
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 10m
>  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)