Skip to content

Commit 86ce9f6

Browse files
wip
1 parent f0d063a commit 86ce9f6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/services/azblob/src/config.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ pub struct AzblobConfig {
7676

7777
/// The maximum batch operations of Azblob service backend.
7878
pub batch_max_operations: Option<usize>,
79+
80+
/// Enable soft deletes for this storage account.
81+
#[serde(default)]
82+
pub enable_soft_deletes: bool,
7983
}
8084

8185
impl Debug for AzblobConfig {
@@ -84,6 +88,7 @@ impl Debug for AzblobConfig {
8488
.field("root", &self.root)
8589
.field("container", &self.container)
8690
.field("endpoint", &self.endpoint)
91+
.field("enable_soft_deletes", &self.enable_soft_deletes)
8792
.finish_non_exhaustive()
8893
}
8994
}

0 commit comments

Comments
 (0)