From 39302300d91e4875a2e2f475bb7938dfc86a5e20 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 3 May 2018 14:01:48 +0200 Subject: gometalinter: check unkeyed composite literals Update #538 --- vm/gce/gce.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm/gce') diff --git a/vm/gce/gce.go b/vm/gce/gce.go index bdb7911f8..782712c4a 100644 --- a/vm/gce/gce.go +++ b/vm/gce/gce.go @@ -367,7 +367,7 @@ func (pool *Pool) waitInstanceBoot(name, ip, sshKey, sshUser, gceKey string) err if err != nil { output = []byte(fmt.Sprintf("failed to get boot output: %v", err)) } - return vmimpl.BootError{"can't ssh into the instance", output} + return vmimpl.BootError{Title: "can't ssh into the instance", Output: output} } func (pool *Pool) getSerialPortOutput(name, gceKey string) ([]byte, error) { -- cgit mrf-deployment