Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
murgatroid99 committed Jul 25, 2023
1 parent e83ce3b commit e43fa71
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/grpc-js/src/transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,11 @@ class Http2Transport implements Transport {
if (options['grpc.enable_channelz'] === 0) {
this.channelzEnabled = false;
}
this.channelzRef = registerChannelzSocket(this.subchannelAddressString, () => this.getChannelzInfo(), this.channelzEnabled);
this.channelzRef = registerChannelzSocket(
this.subchannelAddressString,
() => this.getChannelzInfo(),
this.channelzEnabled
);
// Build user-agent string.
this.userAgent = [
options['grpc.primary_user_agent'],
Expand Down

0 comments on commit e43fa71

Please sign in to comment.