Skip to content

Commit 7bec0b0

Browse files
fix ci
1 parent cebfd5c commit 7bec0b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

api/v1alpha3/machine_types.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,12 @@ type Machine struct {
235235
Status MachineStatus `json:"status,omitempty"`
236236
}
237237

238-
func (c *Machine) GetConditions() Conditions {
239-
return c.Status.Conditions
238+
func (m *Machine) GetConditions() Conditions {
239+
return m.Status.Conditions
240240
}
241241

242-
func (c *Machine) SetConditions(conditions Conditions) {
243-
c.Status.Conditions = conditions
242+
func (m *Machine) SetConditions(conditions Conditions) {
243+
m.Status.Conditions = conditions
244244
}
245245

246246
// +kubebuilder:object:root=true

0 commit comments

Comments
 (0)