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

Commit 2266ad7

Browse files
committed
chore: merge branch 'conformance-fixes' into conformance-fixes-2
2 parents 63582cd + e9da706 commit 2266ad7

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
@@ -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 {};

0 commit comments

Comments
 (0)