From 05b5a32cfd918a0049f5657a6474ec3b08694093 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 27 Feb 2018 12:08:16 +0100 Subject: pkg/gce: fix a type --- pkg/gce/gce.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/gce') diff --git a/pkg/gce/gce.go b/pkg/gce/gce.go index 93dc65557..f2675339f 100644 --- a/pkg/gce/gce.go +++ b/pkg/gce/gce.go @@ -83,7 +83,7 @@ func NewContext() (*Context, error) { } } ctx.Network = iface.Network - ctx.Subnetwork = iface.Network + ctx.Subnetwork = iface.Subnetwork } if ctx.InternalIP == "" { return nil, fmt.Errorf("failed to get current instance internal IP") -- cgit mrf-deployment