Merge pull request #10185 from mesosphere/exclusive-port-range

Fix default service node port range in e2e test
pull/6/head
Eric Tune 2015-07-14 12:00:39 -07:00
commit 914b6fe25b
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ import (
)
// This should match whatever the default/configured range is
var ServiceNodePortRange = util.PortRange{Base: 30000, Size: 2767}
var ServiceNodePortRange = util.PortRange{Base: 30000, Size: 2768}
var _ = Describe("Services", func() {
var c *client.Client