Skip to content

Commit 189599a

Browse files
unknownclaude
authored andcommitted
Fix %s format verb used with map type in step_start_on_himn.go
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2b00abc commit 189599a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builder/xenserver/common/step_start_on_himn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func (self *StepStartOnHIMN) Run(state multistep.StateBag) multistep.StepAction
6666
if err != nil {
6767
return false, fmt.Errorf("Can't get assigned IPs: %s", err.Error())
6868
}
69-
log.Printf("IPs: %s", ips)
69+
log.Printf("IPs: %v", ips)
7070
log.Printf("Ref: %s", instance)
7171

7272
//Check for instance.Ref in map

0 commit comments

Comments
 (0)