Skip to content

Commit

Permalink
Update some wrapped stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 8, 2016
1 parent 7cc0f46 commit cd92509
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/connection-backoff-interop-test-description.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ which translates to about 13 retries.
are conforming the spec or do its own check on the backoffs in the response.

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

Expand Down
2 changes: 1 addition & 1 deletion src/csharp/generate_proto_csharp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ $PROTOC --plugin=$PLUGIN --csharp_out=$HEALTHCHECK_DIR --grpc_out=$HEALTHCHECK_D
-I src/proto/grpc/health/v1alpha src/proto/grpc/health/v1alpha/health.proto

$PROTOC --plugin=$PLUGIN --csharp_out=$TESTING_DIR --grpc_out=$TESTING_DIR \
-I . test/proto/{empty,messages,test}.proto test/proto/benchmarks/*.proto
-I . src/proto/grpc/testing/{empty,messages,test}.proto test/proto/benchmarks/*.proto
2 changes: 1 addition & 1 deletion src/node/interop/interop_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var path = require('path');
var grpc = require('..');
var testProto = grpc.load({
root: __dirname + '/../../..',
file: 'test/proto/test.proto'}).grpc.testing;
file: 'src/proto/grpc/testing/test.proto'}).grpc.testing;
var GoogleAuth = require('google-auth-library');

var assert = require('assert');
Expand Down
2 changes: 1 addition & 1 deletion src/node/interop/interop_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var AsyncDelayQueue = require('./async_delay_queue');
var grpc = require('..');
var testProto = grpc.load({
root: __dirname + '/../../..',
file: 'test/proto/test.proto'}).grpc.testing;
file: 'src/proto/grpc/testing/test.proto'}).grpc.testing;

var ECHO_INITIAL_KEY = 'x-grpc-test-echo-initial';
var ECHO_TRAILING_KEY = 'x-grpc-test-echo-trailing-bin';
Expand Down
2 changes: 1 addition & 1 deletion src/node/performance/benchmark_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var Histogram = require('./histogram');
var grpc = require('../../../');
var serviceProto = grpc.load({
root: __dirname + '/../../..',
file: 'test/proto/benchmarks/services.proto'}).grpc.testing;
file: 'src/proto/grpc/testing/services.proto'}).grpc.testing;

/**
* Create a buffer filled with size zeroes
Expand Down
2 changes: 1 addition & 1 deletion src/node/performance/benchmark_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var path = require('path');
var grpc = require('../../../');
var serviceProto = grpc.load({
root: __dirname + '/../../..',
file: 'test/proto/benchmarks/services.proto'}).grpc.testing;
file: 'src/proto/grpc/testing/services.proto'}).grpc.testing;

/**
* Create a buffer filled with size zeroes
Expand Down
2 changes: 1 addition & 1 deletion src/node/performance/worker_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var worker_service_impl = require('./worker_service_impl');
var grpc = require('../../../');
var serviceProto = grpc.load({
root: __dirname + '/../../..',
file: 'test/proto/benchmarks/services.proto'}).grpc.testing;
file: 'src/proto/grpc/testing/services.proto'}).grpc.testing;

function runServer(port) {
var server_creds = grpc.ServerCredentials.createInsecure();
Expand Down

0 comments on commit cd92509

Please sign in to comment.