Skip to content

Commit

Permalink
influxlib: switch to aristanetworks fork
Browse files Browse the repository at this point in the history
The fork is pinned at v1.6.5 which is the last release before
influxdata/influxdb@f2898d1.
The commit is part of the larger effort in
influxdata/influxdb#10618 which makes a
breaking change.

We can't handle this with Go modules because of
golang/protobuf#751, which in turn depends on
golang/go#24250 which will be fixed with
go1.12.

Change-Id: I43b643fcab202d94bd529dfce135fb4e3f5add52
  • Loading branch information
7AC committed Jan 11, 2019
1 parent cfcddad commit e064134
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/test2influxdb/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
"time"

"github.com/aristanetworks/glog"
client "github.com/influxdata/influxdb/client/v2"
client "github.com/aristanetworks/influxdb/client/v2"
"golang.org/x/tools/benchmark/parse"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/test2influxdb/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

"github.com/aristanetworks/goarista/test"
"github.com/influxdata/influxdb/client/v2"
"github.com/aristanetworks/influxdb/client/v2"
)

func newPoint(t *testing.T, measurement string, tags map[string]string,
Expand Down
2 changes: 1 addition & 1 deletion influxlib/lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"time"

influxdb "github.com/influxdata/influxdb/client/v2"
influxdb "github.com/aristanetworks/influxdb/client/v2"
)

// Row is defined as a map where the key (string) is the name of the
Expand Down
2 changes: 1 addition & 1 deletion influxlib/testlib.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"
"time"

influx "github.com/influxdata/influxdb/client/v2"
influx "github.com/aristanetworks/influxdb/client/v2"
)

// This will serve as a fake client object to test off of.
Expand Down

0 comments on commit e064134

Please sign in to comment.