(client: MongoClient)
| 27 | } |
| 28 | |
| 29 | async function isAtlasDataLake(client: MongoClient): Promise<boolean> { |
| 30 | const buildInfo = await client.db('admin').admin().buildInfo(); |
| 31 | return 'dataLake' in buildInfo; |
| 32 | } |
| 33 | |
| 34 | async function terminateOpenTransactions(client: MongoClient) { |
| 35 | // killAllSessions is not allowed in ADL. |
no test coverage detected