Skip to content

Commit 6d833cd

Browse files
authored
feat: remove plain_http option from ObjectStorage proto (#616)
Signed-off-by: EvanCley <[email protected]>
1 parent 751c0d8 commit 6d833cd

File tree

8 files changed

+82
-105
lines changed

8 files changed

+82
-105
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dragonfly-api"
3-
version = "2.2.12"
3+
version = "2.2.13"
44
authors = ["Gaius <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

pkg/apis/common/v2/common.pb.go

Lines changed: 80 additions & 92 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/apis/common/v2/common.pb.validate.go

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/apis/common/v2/common.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -726,8 +726,6 @@ message ObjectStorage {
726726
}];
727727
// Insecure skip verify indicates whether to skip verifying the server's certificate chain.
728728
optional bool insecure_skip_verify = 9;
729-
// Plain http indicates whether to use plain HTTP for downloading.
730-
optional bool plain_http = 10;
731729
}
732730

733731
// HDFS related information.

proto/common.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,8 +650,6 @@ message ObjectStorage {
650650
optional string security_token = 8;
651651
// Insecure skip verify indicates whether to skip verifying the server's certificate chain.
652652
optional bool insecure_skip_verify = 9;
653-
// Plain http indicates whether to use plain HTTP for downloading.
654-
optional bool plain_http = 10;
655653
}
656654

657655
// HDFS related information.

src/common.v2.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -771,9 +771,6 @@ pub struct ObjectStorage {
771771
/// Insecure skip verify indicates whether to skip verifying the server's certificate chain.
772772
#[prost(bool, optional, tag = "9")]
773773
pub insecure_skip_verify: ::core::option::Option<bool>,
774-
/// Plain http indicates whether to use plain HTTP for downloading.
775-
#[prost(bool, optional, tag = "10")]
776-
pub plain_http: ::core::option::Option<bool>,
777774
}
778775
/// HDFS related information.
779776
#[derive(serde::Serialize, serde::Deserialize)]

src/descriptor.bin

-192 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)