aboutsummaryrefslogtreecommitdiffstats
path: root/vm/gce
diff options
context:
space:
mode:
Diffstat (limited to 'vm/gce')
-rw-r--r--vm/gce/gce.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/vm/gce/gce.go b/vm/gce/gce.go
index dbed89bee..f9f5ded00 100644
--- a/vm/gce/gce.go
+++ b/vm/gce/gce.go
@@ -105,10 +105,6 @@ func Ctor(env *vmimpl.Env, consoleReadCmd string) (*Pool, error) {
if cfg.Count < 1 || cfg.Count > 1000 {
return nil, fmt.Errorf("invalid config param count: %v, want [1, 1000]", cfg.Count)
}
- if env.Debug && cfg.Count > 1 {
- log.Logf(0, "limiting number of VMs from %v to 1 in debug mode", cfg.Count)
- cfg.Count = 1
- }
if cfg.MachineType == "" {
return nil, fmt.Errorf("machine_type parameter is empty")
}