This repository was archived by the owner on Mar 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -112,11 +112,6 @@ export interface BigtableOptions extends gax.GoogleAuthOptions {
112112 BigtableTableAdminClient ?: gax . ClientOptions ;
113113
114114 metricsEnabled ?: boolean ;
115-
116- /**
117- * Internal only.
118- */
119- clientConfig ?: gax . ClientConfig ;
120115}
121116
122117/**
Original file line number Diff line number Diff line change @@ -92,13 +92,15 @@ export const createClient: ClientImplMaker<
9292 ) ;
9393 } ) ;
9494 }
95- const bigtable = new Bigtable ( {
95+
96+ const options = {
9697 projectId,
9798 apiEndpoint,
9899 authClient,
99100 appProfileId : appProfileId ! ,
100101 clientConfig,
101- } ) ;
102+ } ;
103+ const bigtable = new Bigtable ( options ) ;
102104 createBigtableClient ( bigtable ) ;
103105 clientMap . set ( clientId ! , bigtable ) ;
104106 return { } ;
You can’t perform that action at this time.
0 commit comments