Skip to content

Commit

Permalink
*.go: update contivmodel import path to reference local netplugin dir…
Browse files Browse the repository at this point in the history
…ectory

Signed-off-by: Bill Robinson <dseevr@users.noreply.github.com>
  • Loading branch information
dseevr committed Nov 28, 2017
1 parent e4c2c2b commit db703e8
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion contivmodel/systemtests/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"time"

. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

func Test(t *testing.T) { TestingT(t) }
Expand Down
2 changes: 1 addition & 1 deletion mgmtfn/dockplugin/netDriver.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"strings"

log "github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/netplugin/netmaster/docknet"
"github.com/contiv/netplugin/netmaster/intent"
"github.com/contiv/netplugin/netmaster/master"
Expand Down
2 changes: 1 addition & 1 deletion netctl/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"path/filepath"

"github.com/codegangsta/cli"
contivClient "github.com/contiv/contivmodel/client"
contivClient "github.com/contiv/netplugin/contivmodel/client"
)

// Config represents the contents of ~/.netctl/config.json
Expand Down
2 changes: 1 addition & 1 deletion netctl/netctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"golang.org/x/crypto/ssh/terminal"

"github.com/codegangsta/cli"
contivClient "github.com/contiv/contivmodel/client"
contivClient "github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/netplugin/version"
)

Expand Down
2 changes: 1 addition & 1 deletion netmaster/k8snetwork/networkpolicy.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/contiv/client-go/pkg/api/v1"
"github.com/contiv/client-go/pkg/apis/extensions/v1beta1"
"github.com/contiv/client-go/pkg/watch"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/netplugin/utils/k8sutils"
"reflect"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion netmaster/k8snetwork/networkpolicy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package networkpolicy
import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/netmaster/mastercfg"
"github.com/contiv/netplugin/netmaster/objApi"
Expand Down
2 changes: 1 addition & 1 deletion netmaster/master/policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package master

import (
"github.com/contiv/contivmodel"
"github.com/contiv/netplugin/contivmodel"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/netmaster/mastercfg"
"github.com/contiv/netplugin/utils"
Expand Down
2 changes: 1 addition & 1 deletion netmaster/mastercfg/policyState.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

log "github.com/Sirupsen/logrus"

"github.com/contiv/contivmodel"
"github.com/contiv/netplugin/contivmodel"
"github.com/contiv/netplugin/core"
"github.com/contiv/ofnet"
)
Expand Down
2 changes: 1 addition & 1 deletion netmaster/objApi/apiController.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"io/ioutil"
"net/http"

contivModel "github.com/contiv/contivmodel"
contivModel "github.com/contiv/netplugin/contivmodel"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/drivers"
"github.com/contiv/netplugin/netmaster/docknet"
Expand Down
2 changes: 1 addition & 1 deletion netmaster/objApi/extContracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package objApi
import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel"
"github.com/contiv/netplugin/contivmodel"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/objdb/modeldb"
)
Expand Down
2 changes: 1 addition & 1 deletion netmaster/objApi/infraproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"

log "github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel"
"github.com/contiv/netplugin/contivmodel"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/netmaster/master"
"github.com/contiv/netplugin/netmaster/mastercfg"
Expand Down
4 changes: 2 additions & 2 deletions netmaster/objApi/objapi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
"testing"
"time"

contivModel "github.com/contiv/contivmodel"
"github.com/contiv/contivmodel/client"
contivModel "github.com/contiv/netplugin/contivmodel"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/netmaster/gstate"
"github.com/contiv/netplugin/netmaster/intent"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/app_prof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package integration

import (
log "github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"

. "github.com/contiv/check"
)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"strings"

log "github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/netplugin/netmaster/mastercfg"

. "github.com/contiv/check"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/integ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
. "testing"

log "github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"

. "github.com/contiv/check"
)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/mesos_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (

log "github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/netplugin/mgmtfn/mesosplugin/cniapi"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/container"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/netprofile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package integration
import (
"time"

"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"

. "github.com/contiv/check"
)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/npcluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

log "github.com/Sirupsen/logrus"

"github.com/contiv/contivmodel"
"github.com/contiv/netplugin/contivmodel"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/netmaster/daemon"
"github.com/contiv/netplugin/netplugin/agent"
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/aci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

log "github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

/* TestACIMode does the following:
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/basic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

func (s *systemtestSuite) TestBasicStartRemoveContainerVXLAN(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/bgp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/remotessh"
)

Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/hostaccess_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package systemtests

import (
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/remotessh"
)

Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/netprofile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

func (s *systemtestSuite) TestNetprofileBasicUpdateVXLAN(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/network_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

func (s *systemtestSuite) TestInfraNetworkAddDeleteVXLAN(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/policy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

func (s *systemtestSuite) TestPolicyBasicVXLAN(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

var providerIndex int
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/trigger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
. "github.com/contiv/check"

"github.com/Sirupsen/logrus"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
)

func (s *systemtestSuite) TestTriggerNetpluginUplinkUpgrade(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion test/systemtests/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

"github.com/Sirupsen/logrus"
. "github.com/contiv/check"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/contivmodel/client"
"github.com/contiv/remotessh"
)

Expand Down

0 comments on commit db703e8

Please sign in to comment.