Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed error checking in recoveryservices.go #1419

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions modules/azure/recoveryservices.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func GetRecoveryServicesVaultBackupProtectedVMList(t *testing.T, policyName, vau
return list
}

// RecoveryServicesVaultExists indicates whether a recovery services vault exists; otherwise false or error.
// RecoveryServicesVaultExistsE indicates whether a recovery services vault exists; otherwise false or error.
func RecoveryServicesVaultExistsE(vaultName, resourceGroupName, subscriptionID string) (bool, error) {
_, err := GetRecoveryServicesVaultE(vaultName, resourceGroupName, subscriptionID)
if err != nil {
Expand Down Expand Up @@ -118,9 +118,9 @@ func GetRecoveryServicesVaultBackupProtectedVMListE(policyName, vaultName, resou
return nil, err
}

resourceGroupName, err2 := getTargetAzureResourceGroupName(resourceGroupName)
resourceGroupName, err = getTargetAzureResourceGroupName(resourceGroupName)
if err != nil {
return nil, err2
return nil, err
}

client := backup.NewProtectedItemsGroupClient(subscriptionID)
Expand Down