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 26498b0 commit 300ef69Copy full SHA for 300ef69
src/common/session.ts
@@ -156,8 +156,8 @@ export class Session extends EventEmitter<SessionEvents> {
156
157
async isSearchIndexSupported(): Promise<boolean> {
158
try {
159
- const dummyDatabase = `db-${Date.now()}`;
160
- const dummyCollection = `coll-${Date.now()}`;
+ const dummyDatabase = `search-index-test-db-${Date.now()}`;
+ const dummyCollection = `search-index-test-coll-${Date.now()}`;
161
// If a cluster supports search indexes, the call below will succeed
162
// with a cursor otherwise will throw an Error
163
await this.serviceProvider.getSearchIndexes(dummyDatabase, dummyCollection);
0 commit comments