aboutsummaryrefslogtreecommitdiffstats
path: root/vm/gce
diff options
context:
space:
mode:
Diffstat (limited to 'vm/gce')
-rw-r--r--vm/gce/gce.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/vm/gce/gce.go b/vm/gce/gce.go
index 8de0b56db..e65ee836b 100644
--- a/vm/gce/gce.go
+++ b/vm/gce/gce.go
@@ -35,7 +35,10 @@ import (
)
func init() {
- vmimpl.Register("gce", ctor, true)
+ vmimpl.Register("gce", vmimpl.Type{
+ Ctor: ctor,
+ Overcommit: true,
+ })
}
type Config struct {