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

lxd/storage: Remove redundant error check #14764

Merged
merged 1 commit into from
Jan 10, 2025
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: 0 additions & 6 deletions lxd/storage/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -1043,9 +1043,6 @@ func VolumeUsedByProfileDevices(s *state.State, poolName string, projectName str
// storage project as volume.
for i, profile := range profiles {
profileStorageProject := project.StorageVolumeProjectFromRecord(profileProjects[i], volumeType)
if err != nil {
return err
}

// Check profile's storage project is the same as the volume's project.
// If not then the volume names mentioned in the profile's config cannot be referring to volumes
Expand Down Expand Up @@ -1109,9 +1106,6 @@ func VolumeUsedByInstanceDevices(s *state.State, poolName string, projectName st
}

instStorageProject := project.StorageVolumeProjectFromRecord(&p, volumeType)
if err != nil {
return err
}

// Check instance's storage project is the same as the volume's project.
// If not then the volume names mentioned in the instance's config cannot be referring to volumes
Expand Down
Loading