Skip to content

Commit

Permalink
Merge pull request #31 from vivekhiwarkar/fix_buf_lint_issue
Browse files Browse the repository at this point in the history
changes after fixing buf lint issue of paralus
  • Loading branch information
niravparikh05 authored Aug 26, 2022
2 parents cd57811 + af7ad13 commit ffc535b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
### Added
### Changed
- Removed building images to registry on pull requests [niravparikh05](https://github.com/niravparikh05)
- Changes after fixing lint issue due to buf in paralus core [vivekhiwarkar](https://github.com/vivekhiwarkar)
### Fixed

## [0.1.0] - 2022-06-22
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/julienschmidt/httprouter v1.3.0
github.com/mattn/go-runewidth v0.0.8
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
github.com/paralus/paralus v0.0.0-20220610083417-845812b5f7f2
github.com/paralus/paralus v0.1.3-0.20220826052930-27805eb460bd
github.com/pkg/term v0.0.0-20180423043932-cda20d4ac917
github.com/rs/xid v1.3.0
github.com/spf13/viper v1.10.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -638,8 +638,8 @@ github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFSt
github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=
github.com/ory/kratos-client-go v0.8.2-alpha.1 h1:YlKhGOSZjounlB9iY4xSWlqHbyLYkeLzlLk8ZL7/nEM=
github.com/ory/kratos-client-go v0.8.2-alpha.1/go.mod h1:dOQIsar76K07wMPJD/6aMhrWyY+sFGEagLDLso1CpsA=
github.com/paralus/paralus v0.0.0-20220610083417-845812b5f7f2 h1:CheJhPqE4jdO8MFI8nHhrq9CbCPyGEJZSd1bPUI0pJE=
github.com/paralus/paralus v0.0.0-20220610083417-845812b5f7f2/go.mod h1:L2m3kVIXTx738VO+YV474WNAiKOnoy32yRbmmYZxlPw=
github.com/paralus/paralus v0.1.3-0.20220826052930-27805eb460bd h1:mm+Y7BdLBx//AyMNGghx6IeCjP5fCy+N/2qqu1ymJlg=
github.com/paralus/paralus v0.1.3-0.20220826052930-27805eb460bd/go.mod h1:L2m3kVIXTx738VO+YV474WNAiKOnoy32yRbmmYZxlPw=
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
Expand Down
4 changes: 2 additions & 2 deletions internal/dev/mock/sentrypool.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ func (p *SentryPool) NewClient(ctx context.Context) (sentryrpcv2.SentryClient, e
}

type SentryClient struct {
sentryrpcv2.BootstrapClient
sentryrpcv2.ClusterAuthorizationClient
sentryrpcv2.BootstrapServiceClient
sentryrpcv2.ClusterAuthorizationServiceClient
KubeConfigClient
}

Expand Down
6 changes: 3 additions & 3 deletions internal/dev/mock/systempool.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ func (p *SystemPool) NewClient(ctx context.Context) (systemrpc.SystemClient, err
}

type SystemClient struct {
systemrpc.ProjectClient
systemrpc.OrganizationClient
systemrpc.PartnerClient
systemrpc.ProjectServiceClient
systemrpc.OrganizationServiceClient
systemrpc.PartnerServiceClient
}

func (kcc SystemClient) GetProject(ctx context.Context, in *systemv3.Project, opts ...grpc.CallOption) (*systemv3.Project, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/dev/mock/ugpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func (p *UGPool) NewClient(ctx context.Context) (userrpc.UGClient, error) {
}

type UGClient struct {
userrpc.UserClient
userrpc.UserServiceClient
}

func (kcc UGClient) GetUser(ctx context.Context, in *userv3.User, opts ...grpc.CallOption) (*userv3.User, error) {
Expand Down

0 comments on commit ffc535b

Please sign in to comment.