Skip to content

Commit

Permalink
Merge pull request #260 from stakwork/temp/change-default-retention-day
Browse files Browse the repository at this point in the history
temp: change default retention day to 2 for test
  • Loading branch information
tobi-bams authored Jul 22, 2024
2 parents 095aad0 + c808a30 commit 26e0637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn bucket_name() -> String {

fn backup_retention_days() -> i64 {
match getenv("BACKUP_RETENTION_DAYS")
.unwrap_or("10".to_string())
.unwrap_or("2".to_string())
.parse()
{
Ok(float_value) => return float_value,
Expand Down

0 comments on commit 26e0637

Please sign in to comment.