Skip to content

Commit e43fa71

Browse files
committed
Fix formatting
1 parent e83ce3b commit e43fa71

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/grpc-js/src/transport.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,11 @@ class Http2Transport implements Transport {
160160
if (options['grpc.enable_channelz'] === 0) {
161161
this.channelzEnabled = false;
162162
}
163-
this.channelzRef = registerChannelzSocket(this.subchannelAddressString, () => this.getChannelzInfo(), this.channelzEnabled);
163+
this.channelzRef = registerChannelzSocket(
164+
this.subchannelAddressString,
165+
() => this.getChannelzInfo(),
166+
this.channelzEnabled
167+
);
164168
// Build user-agent string.
165169
this.userAgent = [
166170
options['grpc.primary_user_agent'],

0 commit comments

Comments
 (0)