Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaupu committed Dec 22, 2024
1 parent b7c7123 commit b553f27
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions provider/ovh/ovh.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@ func (p *OVHProvider) ApplyChanges(ctx context.Context, changes *plan.Changes) (
}()

allChanges := make([]ovhChange, 0, countTargets(changes.Create, changes.UpdateNew, changes.UpdateOld, changes.Delete))


allChanges = append(allChanges, newOvhChange(ovhCreate, changes.Create, zones, records))

Check failure on line 164 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.Create, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 164 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.Create, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 164 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.Create, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 164 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.Create, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 164 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

cannot use newOvhChange(ovhCreate, changes.Create, zones, records) (value of type []ovhChange) as ovhChange value in argument to append
allChanges = append(allChanges, newOvhChange(ovhCreate, changes.UpdateNew, zones, records))

Check failure on line 165 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateNew, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 165 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateNew, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 165 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateNew, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 165 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateNew, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 165 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

cannot use newOvhChange(ovhCreate, changes.UpdateNew, zones, records) (value of type []ovhChange) as ovhChange value in argument to append
allChanges = append(allChanges, newOvhChange(ovhCreate, changes.UpdateOld, zones, records))

Check failure on line 166 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateOld, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 166 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateOld, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 166 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateOld, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 166 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Build

cannot use newOvhChange(ovhCreate, changes.UpdateOld, zones, records) (value of type []ovhChange) as ovhChange value in argument to append

Check failure on line 166 in provider/ovh/ovh.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

cannot use newOvhChange(ovhCreate, changes.UpdateOld, zones, records) (value of type []ovhChange) as ovhChange value in argument to append
Expand Down

0 comments on commit b553f27

Please sign in to comment.