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.
2 parents 45169da + a68d39c commit eb5c6b3Copy full SHA for eb5c6b3
1 file changed
src/index.ts
@@ -515,7 +515,7 @@ export class Bigtable {
515
this.customEndpoint = customEndpoint;
516
517
let customEndpointBaseUrl: string | undefined;
518
- let customEndpointPort = 443;
+ let customEndpointPort: number | undefined;
519
let sslCreds: gaxVendoredGrpc.ChannelCredentials | undefined;
520
521
if (customEndpoint) {
@@ -528,7 +528,7 @@ export class Bigtable {
528
const baseOptions = Object.assign({
529
libName: 'gccl',
530
libVersion: PKG.version,
531
- port: customEndpointPort,
+ port: customEndpointPort || 443,
532
sslCreds,
533
scopes,
534
'grpc.keepalive_time_ms': 30000,
0 commit comments