File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4646 ErrHardwareMissingDiskConfiguration = fmt .Errorf ("disk configuration is required" )
4747)
4848
49- // HardwareIP returns the IP address of the first network interface of the given hardware.
50- func HardwareIP (hardware * tinkv1.Hardware ) (string , error ) {
49+ // hardwareIP returns the IP address of the first network interface of the given hardware.
50+ func hardwareIP (hardware * tinkv1.Hardware ) (string , error ) {
5151 if hardware == nil {
5252 return "" , ErrHardwareIsNil
5353 }
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ func (scope *machineReconcileScope) setStatus(hw *tinkv1.Hardware) error {
179179 }
180180 }
181181
182- ip , err := HardwareIP (hw )
182+ ip , err := hardwareIP (hw )
183183 if err != nil {
184184 return fmt .Errorf ("extracting Hardware IP address: %w" , err )
185185 }
You can’t perform that action at this time.
0 commit comments