Skip to content

Commit a74aa86

Browse files
mbushkovdirectionless
authored andcommitted
Using github.com/apache/thrift instead git.apache.org. (osquery#72)
github.com/apache/thrift/lib/go is now the official Thrift repository (see https://thrift.apache.org/developers).
1 parent be0a8de commit a74aa86

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/kolide/osquery-go/transport"
99
"github.com/pkg/errors"
1010

11-
"git.apache.org/thrift.git/lib/go/thrift"
11+
"github.com/apache/thrift/lib/go/thrift"
1212
)
1313

1414
type ExtensionManager interface {

gen/osquery/osquery-consts.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/osquery/osquery.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/kolide/osquery-go
22

33
require (
4-
git.apache.org/thrift.git v0.0.0-20180705132951-f12cacf56145
54
github.com/Microsoft/go-winio v0.4.9
5+
github.com/apache/thrift v0.12.0
66
github.com/davecgh/go-spew v1.1.0 // indirect
77
github.com/pkg/errors v0.8.0
88
github.com/pmezard/go-difflib v1.0.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
git.apache.org/thrift.git v0.0.0-20180705132951-f12cacf56145 h1:eqkP2n4Uh6y/Jjzu2X3SxCTWs9IlDqynVJAx6XS0nyo=
2-
git.apache.org/thrift.git v0.0.0-20180705132951-f12cacf56145/go.mod h1:fPE2ZNJGynbRyZ4dJvy6G277gSllfV2HJqblrnkyeyg=
31
github.com/Microsoft/go-winio v0.4.9 h1:3RbgqgGVqmcpbOiwrjbVtDHLlJBGF6aE+yHmNtBNsFQ=
42
github.com/Microsoft/go-winio v0.4.9/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA=
3+
github.com/apache/thrift v0.12.0 h1:pODnxUFNcjP9UTLZGTdeh+j16A8lJbRvD3rOtrk/7bs=
4+
github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
55
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
66
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
77
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw=

server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77
"time"
88

9-
"git.apache.org/thrift.git/lib/go/thrift"
9+
"github.com/apache/thrift/lib/go/thrift"
1010

1111
"github.com/kolide/osquery-go/gen/osquery"
1212
"github.com/kolide/osquery-go/transport"

server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"testing"
1313
"time"
1414

15-
"git.apache.org/thrift.git/lib/go/thrift"
15+
"github.com/apache/thrift/lib/go/thrift"
1616

1717
"github.com/kolide/osquery-go/gen/osquery"
1818
"github.com/kolide/osquery-go/plugin/logger"

transport/transport.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"time"
1010

11-
"git.apache.org/thrift.git/lib/go/thrift"
11+
"github.com/apache/thrift/lib/go/thrift"
1212
"github.com/pkg/errors"
1313
)
1414

transport/transport_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/Microsoft/go-winio"
99
"github.com/pkg/errors"
1010

11-
"git.apache.org/thrift.git/lib/go/thrift"
11+
"github.com/apache/thrift/lib/go/thrift"
1212
)
1313

1414
// Open opens the named pipe with the provided path and timeout,

0 commit comments

Comments
 (0)