This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch stream-based-write in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 0e1b39f6c381292aad76ab2eb284ce8c219cf757 Author: Xuanwo <[email protected]> AuthorDate: Wed Aug 30 18:31:40 2023 +0800 Leave gcs writer futuer Signed-off-by: Xuanwo <[email protected]> --- core/src/services/gcs/writer.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/services/gcs/writer.rs b/core/src/services/gcs/writer.rs index 9191d70fe..add598ba6 100644 --- a/core/src/services/gcs/writer.rs +++ b/core/src/services/gcs/writer.rs @@ -38,6 +38,7 @@ pub struct GcsWriter { write_fixed_size: usize, } +/// TODO we need to add buffer support for gcs. impl GcsWriter { pub fn new(core: Arc<GcsCore>, path: &str, op: OpWrite) -> Self { let write_fixed_size = core.write_fixed_size;
