mirror of https://github.com/grpc/grpc-node.git
grpc-js: Add more trace logging around establishing connections
This commit is contained in:
parent
0ae32bb05e
commit
776bcb4632
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@grpc/grpc-js",
|
"name": "@grpc/grpc-js",
|
||||||
"version": "1.3.5",
|
"version": "1.3.6",
|
||||||
"description": "gRPC Library for Node - pure JS implementation",
|
"description": "gRPC Library for Node - pure JS implementation",
|
||||||
"homepage": "https://grpc.io/",
|
"homepage": "https://grpc.io/",
|
||||||
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
|
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
|
||||||
|
|
|
@ -254,6 +254,12 @@ export function getProxiedConnection(
|
||||||
reject();
|
reject();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
trace(
|
||||||
|
'Successfully established a plaintext connection to ' +
|
||||||
|
options.path +
|
||||||
|
' through proxy ' +
|
||||||
|
proxyAddressString
|
||||||
|
);
|
||||||
resolve({
|
resolve({
|
||||||
socket,
|
socket,
|
||||||
realTarget: parsedTarget,
|
realTarget: parsedTarget,
|
||||||
|
|
|
@ -303,6 +303,11 @@ export class Subchannel {
|
||||||
}
|
}
|
||||||
|
|
||||||
private createSession(proxyConnectionResult: ProxyConnectionResult) {
|
private createSession(proxyConnectionResult: ProxyConnectionResult) {
|
||||||
|
if (proxyConnectionResult.realTarget) {
|
||||||
|
trace(this.subchannelAddressString + ' creating HTTP/2 session through proxy to ' + proxyConnectionResult.realTarget);
|
||||||
|
} else {
|
||||||
|
trace(this.subchannelAddressString + ' creating HTTP/2 session');
|
||||||
|
}
|
||||||
const targetAuthority = getDefaultAuthority(
|
const targetAuthority = getDefaultAuthority(
|
||||||
proxyConnectionResult.realTarget ?? this.channelTarget
|
proxyConnectionResult.realTarget ?? this.channelTarget
|
||||||
);
|
);
|
||||||
|
@ -403,6 +408,7 @@ export class Subchannel {
|
||||||
});
|
});
|
||||||
session.once('close', () => {
|
session.once('close', () => {
|
||||||
if (this.session === session) {
|
if (this.session === session) {
|
||||||
|
trace(this.subchannelAddressString + ' connection closed');
|
||||||
this.transitionToState(
|
this.transitionToState(
|
||||||
[ConnectivityState.CONNECTING],
|
[ConnectivityState.CONNECTING],
|
||||||
ConnectivityState.TRANSIENT_FAILURE
|
ConnectivityState.TRANSIENT_FAILURE
|
||||||
|
|
Loading…
Reference in New Issue