Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pivnoy committed Oct 25, 2024
1 parent eea9958 commit 9a7a104
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cluster_ha_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ func fillHAResources(resources []haResource) ([]HAResource, error) {

haResources = append(haResources, HAResource{
ID: sid.ID,
Group: &resource.Group,
Comment: &resource.Comment,
MaxRelocate: &resource.MaxRelocate,
MaxRestart: &resource.MaxRestart,
State: &resource.State,
Group: AsPtr(resource.Group),
Comment: AsPtr(resource.Comment),
MaxRelocate: AsPtr(resource.MaxRelocate),
MaxRestart: AsPtr(resource.MaxRestart),
State: AsPtr(resource.State),
})
}

Expand Down

0 comments on commit 9a7a104

Please sign in to comment.