Fixed GCE builder after dependency change.

See
4af91da601
This commit is contained in:
Rickard von Essen 2015-09-20 10:14:07 +02:00
parent 3f14b9d984
commit 9cf99289c5
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ func (d *driverGCE) RunInstance(c *InstanceConfig) (<-chan error, error) {
for k, v := range c.Metadata {
metadata = append(metadata, &compute.MetadataItems{
Key: k,
Value: v,
Value: &v,
})
}