Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add organisation to grpc gateway path #578

Merged
merged 1 commit into from
Aug 4, 2021
Merged

Add organisation to grpc gateway path #578

merged 1 commit into from
Aug 4, 2021

Conversation

alpe
Copy link
Contributor

@alpe alpe commented Aug 4, 2021

This is a convention used in the cosmos-sdk

The GRPC gateway is a generated REST interface that is translates queries/responses into/from protobuf.

@alpe alpe requested a review from ethanfrey August 4, 2021 09:16
@alpe alpe force-pushed the grpc_gateway_path branch 3 times, most recently from 7c8dd09 to cbbd55f Compare August 4, 2021 09:22
@codecov
Copy link

codecov bot commented Aug 4, 2021

Codecov Report

Merging #578 (7ea8cd7) into master (d9ae0e2) will decrease coverage by 0.03%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #578      +/-   ##
==========================================
- Coverage   59.71%   59.67%   -0.04%     
==========================================
  Files          45       45              
  Lines        5208     5208              
==========================================
- Hits         3110     3108       -2     
- Misses       1874     1875       +1     
- Partials      224      225       +1     
Impacted Files Coverage Δ
x/wasm/keeper/keeper.go 85.11% <0.00%> (-0.37%) ⬇️

Copy link
Member

@webmaster128 webmaster128 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

This does not affect CosmJS at all because the querry types are already in cosmwasm/wasm/v1/query. It only affects the LCD API, which we do not use.

Copy link
Member

@ethanfrey ethanfrey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

CHANGELOG.md Outdated
@@ -15,9 +15,15 @@
[\#565](https://github.com/CosmWasm/wasmd/pull/565)

**Implemented Enhancements:**

- Wasmvm upgrade 557 [\#559](https://github.com/CosmWasm/wasmd/pull/559) ([ethanfrey](https://github.com/ethanfrey))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for adding the changeling

@@ -6,26 +6,26 @@ DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
echo "-----------------------"
PROTO_THRD="$DIR/../../third_party/proto"
PROTO_WASMD="$DIR/../../proto"
PROTO_WASMD_QUERY="$PROTO_WASMD/cosmwasm/wasm/v1beta1/query.proto"
PROTO_WASMD_QUERY="$PROTO_WASMD/cosmwasm/wasm/v1/query.proto"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good stuff here

@@ -46,11 +47,11 @@ service Query {
}
// Code gets the binary code and metadata for a singe wasm code
rpc Code(QueryCodeRequest) returns (QueryCodeResponse) {
option (google.api.http).get = "/wasm/v1/code/{code_id}";
option (google.api.http).get = "/cosmwasm/wasm/v1/code/{code_id}";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make sense. This is REST path.

@alpe alpe merged commit 4cba33a into master Aug 4, 2021
@alpe alpe deleted the grpc_gateway_path branch August 4, 2021 15:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants