Skip to content

Commit e06c10f

Browse files
fix lint
1 parent a1415ce commit e06c10f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/operations/client_bulk_write/client_bulk_write.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class ClientBulkWriteOperation extends CommandOperation<ClientBulkWriteCu
5454
let connection;
5555
if (!session.pinnedConnection) {
5656
// Checkout a connection to build the command.
57-
connection = await server.pool.checkOut();
57+
connection = await server.pool.checkOut({ timeoutContext });
5858
// Pin the connection to the session so it get used to execute the command and we do not
5959
// perform a double check-in/check-out.
6060
session.pin(connection);

0 commit comments

Comments
 (0)