From 69acd16746757918896cf2a910a3b9fa22d97564 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 1 Apr 2021 16:52:49 +0800 Subject: [PATCH] Groupsmigration-cli compiles, even though resumable uploads are gone. --- src/rust/cli/client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rust/cli/client.rs b/src/rust/cli/client.rs index fe0bea3325..f6dce598ba 100644 --- a/src/rust/cli/client.rs +++ b/src/rust/cli/client.rs @@ -102,7 +102,7 @@ pub enum CallType { arg_enum! { pub enum UploadProtocol { Simple, - Resumable + // Resumable // This seems to be lost during the async conversion } } @@ -110,7 +110,7 @@ impl AsRef for UploadProtocol { fn as_ref(&self) -> &str { match *self { UploadProtocol::Simple => "simple", - UploadProtocol::Resumable => "resumable", + // UploadProtocol::Resumable => "resumable", } } }