Skip to content

Commit

Permalink
MLINE Change post to get for ping handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
2gury committed Dec 1, 2024
1 parent 460e98a commit e95702d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion code/back/gateway/api/gateway/gateway.proto
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ service GatewayService {

rpc GetHello(GetHelloRequest) returns (GetHelloResponse) {
option (google.api.http) = {
post: "/ping"
get: "/ping"
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion code/back/gateway/pkg/gateway/gateway.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions code/back/gateway/pkg/gateway/gateway.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion code/back/integrator/api/integrator/integrator.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ service WorkerService {

rpc GetHello(GetHelloRequest) returns (GetHelloResponse) {
option (google.api.http) = {
post: "/ping"
get: "/ping"
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion code/back/integrator/pkg/integrator/integrator.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions code/back/integrator/pkg/integrator/integrator.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e95702d

Please sign in to comment.