Skip to content

Commit 8831e98

Browse files
committed
Updating to latest netplugin
1 parent 476a1b3 commit 8831e98

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

netmaster/daemon.go

-2
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,6 @@ func (d *daemon) registerRoutes(router *mux.Router) {
194194
s.HandleFunc(fmt.Sprintf("/%s", master.GetServicesRESTEndpoint),
195195
get(true, d.services))
196196

197-
// See if we need to create the default tenant
198-
go objApi.CreateDefaultTenant()
199197
}
200198

201199
// XXX: This function should be returning logical state instead of driver state

netmaster/objApi/apiController.go

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import (
2525
"github.com/contiv/objdb/modeldb"
2626
"strconv"
2727
"strings"
28-
"time"
2928

3029
log "github.com/Sirupsen/logrus"
3130
"github.com/gorilla/mux"

netplugin/netd.go

-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,6 @@ func processServiceLBEvent(netPlugin *plugin.NetPlugin, opts cliOpts, svcLBCfg *
685685
} else {
686686
err = netPlugin.AddServiceLB(serviceID, spec)
687687
operStr = "create"
688-
dockplugin.DNSBridge.AddService(serviceID, svcLBCfg.ServiceName, svcLBCfg.Network, svcLBCfg.Tenant, svcLBCfg.IPAddress)
689688
}
690689
if err != nil {
691690
log.Errorf("Service Load Balancer %s failed.Error:%s", operStr, err)

systemtests/basic_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func (s *systemtestSuite) testBasicStartRemoveContainer(c *C, encap string) {
3434
}), IsNil)
3535

3636
for i := 0; i < s.iterations; i++ {
37-
containers, err := s.runContainers(s.containers, false, "private", nil)
37+
containers, err := s.runContainers(s.containers, false, "private", nil, nil)
3838
c.Assert(err, IsNil)
3939

4040
if s.fwdMode == "routing" && encap == "vlan" {

0 commit comments

Comments
 (0)