We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f9925c commit a432320Copy full SHA for a432320
src/admin.ts
@@ -155,7 +155,10 @@ export class Admin {
155
* @param options - Optional settings for the command
156
*/
157
async listDatabases(options?: ListDatabasesOptions): Promise<ListDatabasesResult> {
158
- return await executeOperation(this.s.db.client, new ListDatabasesOperation(this.s.db, options));
+ return await executeOperation(
159
+ this.s.db.client,
160
+ new ListDatabasesOperation(this.s.db, { timeoutMS: this.s.db.timeoutMS, ...options })
161
+ );
162
}
163
164
/**
0 commit comments