mirror of https://github.com/grpc/grpc-node.git
Fix host_override param typo:
- Fix `host_override` param typo in /test/interop/interop_client.js - Fix other typos
This commit is contained in:
parent
86d93ffd2d
commit
111264badf
|
@ -154,7 +154,7 @@ function getCurrentConfig(): ClientConfig {
|
||||||
node: clientNode,
|
node: clientNode,
|
||||||
generic_xds_configs: genericConfigList
|
generic_xds_configs: genericConfigList
|
||||||
};
|
};
|
||||||
trace('Sending curent config ' + JSON.stringify(config, undefined, 2));
|
trace('Sending current config ' + JSON.stringify(config, undefined, 2));
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -341,7 +341,7 @@ describe(`${anyGrpc.clientName} client -> ${anyGrpc.serverName} server`, functio
|
||||||
after(function() {
|
after(function() {
|
||||||
server.forceShutdown();
|
server.forceShutdown();
|
||||||
});
|
});
|
||||||
describe('Server recieving bad input', function() {
|
describe('Server receiving bad input', function() {
|
||||||
var misbehavingClient;
|
var misbehavingClient;
|
||||||
var badArg = Buffer.from([0xFF]);
|
var badArg = Buffer.from([0xFF]);
|
||||||
before(function() {
|
before(function() {
|
||||||
|
|
|
@ -550,7 +550,7 @@ exports.test_cases = test_cases;
|
||||||
* Execute a single test case.
|
* Execute a single test case.
|
||||||
* @param {string} address The address of the server to connect to, in the
|
* @param {string} address The address of the server to connect to, in the
|
||||||
* format 'hostname:port'
|
* format 'hostname:port'
|
||||||
* @param {string} host_overrirde The hostname of the server to use as an SSL
|
* @param {string} host_override The hostname of the server to use as an SSL
|
||||||
* override
|
* override
|
||||||
* @param {string} test_case The name of the test case to run
|
* @param {string} test_case The name of the test case to run
|
||||||
* @param {bool} tls Indicates that a secure channel should be used
|
* @param {bool} tls Indicates that a secure channel should be used
|
||||||
|
|
|
@ -328,7 +328,7 @@ BenchmarkClient.prototype.startPoisson = function(
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return curent statistics for the client. If reset is set, restart
|
* Return current statistics for the client. If reset is set, restart
|
||||||
* statistic collection.
|
* statistic collection.
|
||||||
* @param {boolean} reset Indicates that statistics should be reset
|
* @param {boolean} reset Indicates that statistics should be reset
|
||||||
* @return {object} Client statistics
|
* @return {object} Client statistics
|
||||||
|
|
|
@ -243,7 +243,7 @@ BenchmarkClient.prototype.startPoisson = function(
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return curent statistics for the client. If reset is set, restart
|
* Return current statistics for the client. If reset is set, restart
|
||||||
* statistic collection.
|
* statistic collection.
|
||||||
* @param {boolean} reset Indicates that statistics should be reset
|
* @param {boolean} reset Indicates that statistics should be reset
|
||||||
* @return {object} Client statistics
|
* @return {object} Client statistics
|
||||||
|
|
|
@ -95,7 +95,7 @@ Histogram.prototype.mean = function() {
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the variance of all added values. Used to calulate the standard deviation
|
* Get the variance of all added values. Used to calculate the standard deviation
|
||||||
* @return {number} The variance
|
* @return {number} The variance
|
||||||
*/
|
*/
|
||||||
Histogram.prototype.variance = function() {
|
Histogram.prototype.variance = function() {
|
||||||
|
|
Loading…
Reference in New Issue