@@ -297,16 +297,16 @@ export class InternalChannel {
297
297
/* The global boolean parameter to getSubchannelPool has the inverse meaning to what
298
298
* the grpc.use_local_subchannel_pool channel option means. */
299
299
this . subchannelPool = getSubchannelPool (
300
- ( options [ 'grpc.use_local_subchannel_pool' ] ?? 0 ) === 0
300
+ ( this . options [ 'grpc.use_local_subchannel_pool' ] ?? 0 ) === 0
301
301
) ;
302
302
this . retryBufferTracker = new MessageBufferTracker (
303
- options [ 'grpc.retry_buffer_size' ] ?? DEFAULT_RETRY_BUFFER_SIZE_BYTES ,
304
- options [ 'grpc.per_rpc_retry_buffer_size' ] ??
303
+ this . options [ 'grpc.retry_buffer_size' ] ?? DEFAULT_RETRY_BUFFER_SIZE_BYTES ,
304
+ this . options [ 'grpc.per_rpc_retry_buffer_size' ] ??
305
305
DEFAULT_PER_RPC_RETRY_BUFFER_SIZE_BYTES
306
306
) ;
307
- this . keepaliveTime = options [ 'grpc.keepalive_time_ms' ] ?? - 1 ;
307
+ this . keepaliveTime = this . options [ 'grpc.keepalive_time_ms' ] ?? - 1 ;
308
308
this . idleTimeoutMs = Math . max (
309
- options [ 'grpc.client_idle_timeout_ms' ] ?? DEFAULT_IDLE_TIMEOUT_MS ,
309
+ this . options [ 'grpc.client_idle_timeout_ms' ] ?? DEFAULT_IDLE_TIMEOUT_MS ,
310
310
MIN_IDLE_TIMEOUT_MS
311
311
) ;
312
312
const channelControlHelper : ChannelControlHelper = {
@@ -372,7 +372,7 @@ export class InternalChannel {
372
372
this . resolvingLoadBalancer = new ResolvingLoadBalancer (
373
373
this . target ,
374
374
channelControlHelper ,
375
- options ,
375
+ this . options ,
376
376
( serviceConfig , configSelector ) => {
377
377
if ( serviceConfig . retryThrottling ) {
378
378
RETRY_THROTTLER_MAP . set (
0 commit comments