diff options
author | Craig Tiller <ctiller@google.com> | 2016-03-28 17:11:26 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-03-28 17:11:26 -0700 |
commit | 14e0d9862fac27558372ce4703787af6426189af (patch) | |
tree | 745fd4e8552d0d46facfb595aca1d61aa17a31de /tools/codegen | |
parent | 078ff3be441372397c32f0c1564777f61fddd75d (diff) |
Begin optionalizing lb policies: initial code movement
Diffstat (limited to 'tools/codegen')
-rwxr-xr-x | tools/codegen/core/gen_load_balancing_proto.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/codegen/core/gen_load_balancing_proto.sh b/tools/codegen/core/gen_load_balancing_proto.sh index 6a5363eeb3..339da0a733 100755 --- a/tools/codegen/core/gen_load_balancing_proto.sh +++ b/tools/codegen/core/gen_load_balancing_proto.sh @@ -82,7 +82,7 @@ fi readonly GRPC_ROOT=$PWD -OUTPUT_DIR="$GRPC_ROOT/src/core/lib/proto/grpc/lb/v0" +OUTPUT_DIR="$GRPC_ROOT/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0" if [ $# -eq 2 ]; then mkdir -p "$2" if [ $? != 0 ]; then @@ -122,7 +122,7 @@ protoc \ "$(basename $1)" readonly PROTO_BASENAME=$(basename $1 .proto) -sed -i "s:$PROTO_BASENAME.pb.h:src/core/lib/proto/grpc/lb/v0/$PROTO_BASENAME.pb.h:g" \ +sed -i "s:$PROTO_BASENAME.pb.h:src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/$PROTO_BASENAME.pb.h:g" \ "$OUTPUT_DIR/$PROTO_BASENAME.pb.c" # prepend copyright |