Skip to content

Commit ee62d0b

Browse files
robshakirRaj998
authored andcommitted
Update gNOI generated protobufs to fix references.
* Remove references to the openconfig/reference repo for gNOI types import in both protobufs and the Bazel files. * Regenerate protobufs using protoc v3.5.1.
1 parent dff27d2 commit ee62d0b

File tree

12 files changed

+395
-393
lines changed

12 files changed

+395
-393
lines changed

bgp/bgp.pb.go

+20-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cert/cert.pb.go

+79-80
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compile_protos.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
set -euo pipefail
3+
4+
proto_imports=".:${GOPATH}/src/github.com/google/protobuf/src:${GOPATH}/src"
5+
6+
# Go
7+
protoc -I=$proto_imports --go_out=. types.proto
8+
for p in bgp cert file interface layer2 mpls system; do
9+
protoc -I=$proto_imports --go_out=plugins=grpc:. $p/$p.proto
10+
done
11+

0 commit comments

Comments
 (0)