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 @@ -99,14 +99,16 @@ export const createClient: ClientImplMaker<
9999 ) ;
100100 } ) ;
101101 }
102- const bigtable = new Bigtable ( {
102+
103+ const options = {
103104 projectId,
104105 apiEndpoint,
105106 authClient,
106107 appProfileId : appProfileId ! ,
107108 clientConfig,
108- } ) ;
109+ } ;
109110 log . info ( 'created bigtable client %s' , clientId ) ;
111+ const bigtable = new Bigtable ( options ) ;
110112 createBigtableClient ( bigtable ) ;
111113 clientMap . set ( clientId ! , bigtable ) ;
112114 return { } ;
You can’t perform that action at this time.
0 commit comments