src/config/datastore.rs_ change prune types from i64 to u64
This commit is contained in:
@ -243,12 +243,12 @@ pub fn update_datastore(
|
||||
comment: Option<String>,
|
||||
gc_schedule: Option<String>,
|
||||
prune_schedule: Option<String>,
|
||||
keep_last: Option<i64>,
|
||||
keep_hourly: Option<i64>,
|
||||
keep_daily: Option<i64>,
|
||||
keep_weekly: Option<i64>,
|
||||
keep_monthly: Option<i64>,
|
||||
keep_yearly: Option<i64>,
|
||||
keep_last: Option<u64>,
|
||||
keep_hourly: Option<u64>,
|
||||
keep_daily: Option<u64>,
|
||||
keep_weekly: Option<u64>,
|
||||
keep_monthly: Option<u64>,
|
||||
keep_yearly: Option<u64>,
|
||||
delete: Option<Vec<DeletableProperty>>,
|
||||
digest: Option<String>,
|
||||
) -> Result<(), Error> {
|
||||
|
Reference in New Issue
Block a user