We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e83ce3b commit e43fa71Copy full SHA for e43fa71
packages/grpc-js/src/transport.ts
@@ -160,7 +160,11 @@ class Http2Transport implements Transport {
160
if (options['grpc.enable_channelz'] === 0) {
161
this.channelzEnabled = false;
162
}
163
- this.channelzRef = registerChannelzSocket(this.subchannelAddressString, () => this.getChannelzInfo(), this.channelzEnabled);
+ this.channelzRef = registerChannelzSocket(
164
+ this.subchannelAddressString,
165
+ () => this.getChannelzInfo(),
166
+ this.channelzEnabled
167
+ );
168
// Build user-agent string.
169
this.userAgent = [
170
options['grpc.primary_user_agent'],
0 commit comments