Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix method calling
Browse files Browse the repository at this point in the history
  • Loading branch information
Heavybullets8 committed May 27, 2024
1 parent 19669ea commit 4fb54f7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions functions/backup_restore/restore/restore_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ def restore(self):
self.logger.error(f"Failed to rollback snapshots for {app_name}: {e}\n")
self.failures[app_name].append(f"Failed to rollback volume snapshots: {e}")

self.restore_snapshots(app_name)

self.logger.info("\nStarting Kubernetes Services\n"
"----------------------------")
try:
Expand Down
1 change: 0 additions & 1 deletion functions/backup_restore/restore/restore_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def restore(self, app_names: list):
for app_name in app_names:
try:
self._rollback_volumes(app_name)
self.restore_snapshots(app_name)
except Exception as e:
self.logger.error(f"Failed to rollback snapshots for {app_name}: {e}\n")
self.failures[app_name].append(f"Failed to rollback volume snapshots: {e}")
Expand Down

0 comments on commit 4fb54f7

Please sign in to comment.