Groupsmigration-cli compiles, even though resumable uploads are gone.

This commit is contained in:
Sebastian Thiel
2021-04-01 16:52:49 +08:00
parent 1569ff47b7
commit 69acd16746

View File

@@ -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<str> for UploadProtocol {
fn as_ref(&self) -> &str {
match *self {
UploadProtocol::Simple => "simple",
UploadProtocol::Resumable => "resumable",
// UploadProtocol::Resumable => "resumable",
}
}
}