Resolve first comments

This commit is contained in:
murgatroid99 2019-08-29 17:03:00 -07:00
parent 889d1d3093
commit 4144558ee6
2 changed files with 3 additions and 5 deletions

View File

@ -128,7 +128,7 @@ export class ChannelImplementation implements Channel {
private readonly credentials: ChannelCredentials,
private readonly options: ChannelOptions
) {
// TODO: check channel arg for getting a private pool
// TODO(murgatroid99): check channel arg for getting a private pool
this.subchannelPool = getSubchannelPool(true);
const channelControlHelper: ChannelControlHelper = {
createSubchannel: (

View File

@ -287,9 +287,7 @@ export { GrpcObject } from './make-client';
import * as resolver from './resolver';
import * as load_balancer from './load-balancer';
function setup() {
(() => {
resolver.registerAll();
load_balancer.registerAll();
}
setup();
})();