Skip to content

Commit cd92509

Browse files
committed
Update some wrapped stuff
1 parent 7cc0f46 commit cd92509

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

doc/connection-backoff-interop-test-description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ which translates to about 13 retries.
1818
are conforming the spec or do its own check on the backoffs in the response.
1919

2020
Client and server use
21-
[test.proto](https://github.com/grpc/grpc/blob/master/test/proto/test.proto).
21+
[test.proto](https://github.com/grpc/grpc/blob/master/src/proto/grpc/testing/test.proto).
2222
Each language should implement its own client. The C++ server is shared among
2323
languages.
2424

src/csharp/generate_proto_csharp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ $PROTOC --plugin=$PLUGIN --csharp_out=$HEALTHCHECK_DIR --grpc_out=$HEALTHCHECK_D
4545
-I src/proto/grpc/health/v1alpha src/proto/grpc/health/v1alpha/health.proto
4646

4747
$PROTOC --plugin=$PLUGIN --csharp_out=$TESTING_DIR --grpc_out=$TESTING_DIR \
48-
-I . test/proto/{empty,messages,test}.proto test/proto/benchmarks/*.proto
48+
-I . src/proto/grpc/testing/{empty,messages,test}.proto test/proto/benchmarks/*.proto

src/node/interop/interop_client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var path = require('path');
3838
var grpc = require('..');
3939
var testProto = grpc.load({
4040
root: __dirname + '/../../..',
41-
file: 'test/proto/test.proto'}).grpc.testing;
41+
file: 'src/proto/grpc/testing/test.proto'}).grpc.testing;
4242
var GoogleAuth = require('google-auth-library');
4343

4444
var assert = require('assert');

src/node/interop/interop_server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var AsyncDelayQueue = require('./async_delay_queue');
4040
var grpc = require('..');
4141
var testProto = grpc.load({
4242
root: __dirname + '/../../..',
43-
file: 'test/proto/test.proto'}).grpc.testing;
43+
file: 'src/proto/grpc/testing/test.proto'}).grpc.testing;
4444

4545
var ECHO_INITIAL_KEY = 'x-grpc-test-echo-initial';
4646
var ECHO_TRAILING_KEY = 'x-grpc-test-echo-trailing-bin';

src/node/performance/benchmark_client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var Histogram = require('./histogram');
4848
var grpc = require('../../../');
4949
var serviceProto = grpc.load({
5050
root: __dirname + '/../../..',
51-
file: 'test/proto/benchmarks/services.proto'}).grpc.testing;
51+
file: 'src/proto/grpc/testing/services.proto'}).grpc.testing;
5252

5353
/**
5454
* Create a buffer filled with size zeroes

src/node/performance/benchmark_server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var path = require('path');
4444
var grpc = require('../../../');
4545
var serviceProto = grpc.load({
4646
root: __dirname + '/../../..',
47-
file: 'test/proto/benchmarks/services.proto'}).grpc.testing;
47+
file: 'src/proto/grpc/testing/services.proto'}).grpc.testing;
4848

4949
/**
5050
* Create a buffer filled with size zeroes

src/node/performance/worker_server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var worker_service_impl = require('./worker_service_impl');
3838
var grpc = require('../../../');
3939
var serviceProto = grpc.load({
4040
root: __dirname + '/../../..',
41-
file: 'test/proto/benchmarks/services.proto'}).grpc.testing;
41+
file: 'src/proto/grpc/testing/services.proto'}).grpc.testing;
4242

4343
function runServer(port) {
4444
var server_creds = grpc.ServerCredentials.createInsecure();

0 commit comments

Comments
 (0)