Skip to content

Commit

Permalink
Make actual_lrp port mapping keys consistent
Browse files Browse the repository at this point in the history
This is a follow up commit to:
- #64
- e9001b4

In the original PR we accidentally modified a file that is automatically
generated from the proto definition instead of modifying the proto
defintion itself.

[#183842469](https://www.pivotaltracker.com/story/show/183842469)

Signed-off-by: David Sabeti <sabetid@vmware.com>
  • Loading branch information
jrussett authored and dsabeti committed Aug 8, 2023
1 parent 02f26c7 commit d58365d
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 77 deletions.
151 changes: 76 additions & 75 deletions models/actual_lrp.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 models/actual_lrp.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ message ActualLRPGroup {
message PortMapping {
uint32 container_port = 1 [(gogoproto.jsontag) = "container_port"];
uint32 host_port = 2 [(gogoproto.jsontag) = "host_port"];
uint32 container_tls_proxy_port = 3;
uint32 host_tls_proxy_port = 4;
uint32 container_tls_proxy_port = 3 [(gogoproto.jsontag) = "container_tls_proxy_port"];
uint32 host_tls_proxy_port = 4 [(gogoproto.jsontag) = "host_tls_proxy_port"];
}

message ActualLRPKey {
Expand Down

0 comments on commit d58365d

Please sign in to comment.