Skip to content

Commit

Permalink
jmroh: #212 go.mod:incorrect pacakge dependency in etcd 3.3 without g…
Browse files Browse the repository at this point in the history
  • Loading branch information
jaemyeongroh committed Jul 14, 2020
1 parent 6a73afc commit 14f9287
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion backend/cmd/cloudhubctl/util.go
Expand Up @@ -21,7 +21,7 @@ func NewBoltClient(path string) (kv.Store, error) {
)
}

// NewService
// NewService ...
func NewService(s kv.Store) (*kv.Service, error) {
return kv.NewService(context.TODO(), s)
}
Expand Down
19 changes: 13 additions & 6 deletions backend/go.mod
Expand Up @@ -2,37 +2,44 @@ module github.com/snetsystems/cloudhub/backend

require (
github.com/NYTimes/gziphandler v1.1.1
github.com/aws/aws-sdk-go v1.27.1 // indirect
github.com/boltdb/bolt v1.3.1
github.com/bouk/httprouter v0.0.0-20160817010721-ee8b3818a7f5
github.com/coreos/etcd v3.3.22+incompatible
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd/v22 v22.1.0 // indirect
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/elazarl/go-bindata-assetfs v1.0.0
github.com/gogo/protobuf v1.3.1
github.com/google/go-cmp v0.3.0
github.com/google/go-cmp v0.4.0
github.com/google/go-github v17.0.0+incompatible
github.com/google/uuid v1.1.1
github.com/goreleaser/goreleaser v0.97.0 // indirect
github.com/gorilla/websocket v1.4.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.14.6 // indirect
github.com/influxdata/flux v0.65.0
github.com/influxdata/influxdb v1.1.5
github.com/influxdata/kapacitor v1.5.3
github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368
github.com/jessevdk/go-flags v1.4.0
github.com/lestrrat-go/jwx v0.9.0
github.com/mattn/go-isatty v0.0.11 // indirect
github.com/mattn/go-zglob v0.0.1 // indirect
github.com/microcosm-cc/bluemonday v1.0.2
github.com/sergi/go-diff v1.1.0
github.com/sirupsen/logrus v1.6.0
github.com/stretchr/testify v1.4.0
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966 // indirect
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
go.etcd.io/etcd v0.0.0-20200625034214-cdc1c8f02ff1
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
google.golang.org/api v0.15.0
)

replace github.com/coreos/go-systemd => github.com/coreos/go-systemd/v22 v22.0.0

replace google.golang.org/grpc => google.golang.org/grpc v1.26.0

go 1.13

0 comments on commit 14f9287

Please sign in to comment.