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

Commit e9da706

Browse files
committed
tests: remove added clientConfig and change how it's passed in
1 parent 220dc8d commit e9da706

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

src/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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
/**

testproxy/services/create-client.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {};

0 commit comments

Comments
 (0)