aboutsummaryrefslogtreecommitdiffstats
path: root/vm/gce
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-05-03 14:01:48 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-05-03 14:01:48 +0200
commit39302300d91e4875a2e2f475bb7938dfc86a5e20 (patch)
tree090b244dbb45fe51fdf988dc261737792d75e054 /vm/gce
parent4c24e4a46766247ec5831351d05a5d1c3acf8269 (diff)
gometalinter: check unkeyed composite literals
Update #538
Diffstat (limited to 'vm/gce')
-rw-r--r--vm/gce/gce.go2
1 files changed, 1 insertions, 1 deletions
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) {