Skip to content

Commit

Permalink
See if not closing the generated client will work
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljbruce committed Nov 28, 2024
1 parent 5319d26 commit 846008a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testproxy/services/close-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const closeClient = ({clientMap}) =>
const bigtable = clientMap.get(clientId);

if (bigtable) {
await bigtable[v2].close();
// await bigtable[v2].close();
await bigtable.close();
return {};
}
Expand Down

0 comments on commit 846008a

Please sign in to comment.