Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit eb5c6b3

Browse files
committed
chore: merge branch 'conformance-fixes' into conformance-fixes-2
2 parents 45169da + a68d39c commit eb5c6b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ export class Bigtable {
515515
this.customEndpoint = customEndpoint;
516516

517517
let customEndpointBaseUrl: string | undefined;
518-
let customEndpointPort = 443;
518+
let customEndpointPort: number | undefined;
519519
let sslCreds: gaxVendoredGrpc.ChannelCredentials | undefined;
520520

521521
if (customEndpoint) {
@@ -528,7 +528,7 @@ export class Bigtable {
528528
const baseOptions = Object.assign({
529529
libName: 'gccl',
530530
libVersion: PKG.version,
531-
port: customEndpointPort,
531+
port: customEndpointPort || 443,
532532
sslCreds,
533533
scopes,
534534
'grpc.keepalive_time_ms': 30000,

0 commit comments

Comments
 (0)