From 661180e0b375adeb97843ec6fa0c8939eeb72baa Mon Sep 17 00:00:00 2001 From: ashmrtn <3891298+ashmrtn@users.noreply.github.com> Date: Fri, 4 Aug 2023 09:04:17 -0700 Subject: [PATCH] Adjust longevity test backup retention (#3945) Increase the number of days backups are kept for OneDrive and Exchange for better test coverage. They now last past the complete maintenance time --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [x] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * #3799 #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- .github/workflows/longevity_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/longevity_test.yml b/.github/workflows/longevity_test.yml index 75566da72..775258f21 100644 --- a/.github/workflows/longevity_test.yml +++ b/.github/workflows/longevity_test.yml @@ -203,7 +203,7 @@ jobs: id: delete-exchange-test env: SERVICE: "exchange" - DELETION_DAYS: 5 + DELETION_DAYS: 10 run: | set -euo pipefail echo -e "\nDelete Backup exchange \n" >> ${CORSO_LOG_FILE} @@ -216,7 +216,7 @@ jobs: id: delete-onedrive-test env: SERVICE: "onedrive" - DELETION_DAYS: 5 + DELETION_DAYS: 10 run: | set -euo pipefail echo -e "\nDelete Backup onedrive \n" >> ${CORSO_LOG_FILE}