diff options
author | Alex Auvolat <alex@adnab.me> | 2023-08-30 14:28:48 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-08-30 14:29:03 +0200 |
commit | 2996dc875fc378ec3597bfa3bdb8ba8951e1865c (patch) | |
tree | 16c5ab74ee56de7e944691abbeb291976bcd9db2 /src/model/bucket_table.rs | |
parent | a2e0e34db57b326ad5c9e7c9218fb9e29900e705 (diff) | |
download | garage-2996dc875fc378ec3597bfa3bdb8ba8951e1865c.tar.gz garage-2996dc875fc378ec3597bfa3bdb8ba8951e1865c.zip |
lifecycle worker: implement main functionality
Diffstat (limited to 'src/model/bucket_table.rs')
-rw-r--r-- | src/model/bucket_table.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/bucket_table.rs b/src/model/bucket_table.rs index 306a58ab..e9d574c5 100644 --- a/src/model/bucket_table.rs +++ b/src/model/bucket_table.rs @@ -95,9 +95,9 @@ mod v08 { /// If Some(x), object key has to start with prefix x pub prefix: Option<String>, /// If Some(x), object size has to be more than x - pub size_gt: Option<usize>, + pub size_gt: Option<u64>, /// If Some(x), object size has to be less than x - pub size_lt: Option<usize>, + pub size_lt: Option<u64>, } #[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)] |