Skip to content

Commit c330c73

Browse files
committed
fix(etcd.go): fix build error
1 parent 48a6787 commit c330c73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/etcd/etcd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func IsRunning(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrup
154154
time.Sleep(250 * time.Millisecond)
155155
}
156156
log.Errf(c, "Etcd is not answering after %d attempts.", count)
157-
return false, &cookoo.FatalError{Error: "Could not connect to Etcd."}
157+
return false, &cookoo.FatalError{Message: "Could not connect to Etcd."}
158158
}
159159

160160
// Set sets a value in etcd.

0 commit comments

Comments
 (0)