Backup Rotation - Variable name changed
This commit is contained in:
parent
e6a4a17922
commit
ebc8d40db8
1 changed files with 2 additions and 2 deletions
|
@ -123,8 +123,8 @@ class InitiateBackupService
|
|||
}
|
||||
|
||||
// Remove oldest backup
|
||||
$lastBackup = $server->backups()->where('is_successful', true)->orderByDesc('created_at')->first();
|
||||
$this->deleteBackupService->handle($lastBackup);
|
||||
$oldestBackup = $server->backups()->where('is_successful', true)->orderByDesc('created_at')->first();
|
||||
$this->deleteBackupService->handle($oldestBackup);
|
||||
}
|
||||
|
||||
return $this->connection->transaction(function () use ($server, $name) {
|
||||
|
|
Loading…
Reference in a new issue