Skip to content

Commit 300ef69

Browse files
Update src/common/session.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 26498b0 commit 300ef69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/session.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ export class Session extends EventEmitter<SessionEvents> {
156156

157157
async isSearchIndexSupported(): Promise<boolean> {
158158
try {
159-
const dummyDatabase = `db-${Date.now()}`;
160-
const dummyCollection = `coll-${Date.now()}`;
159+
const dummyDatabase = `search-index-test-db-${Date.now()}`;
160+
const dummyCollection = `search-index-test-coll-${Date.now()}`;
161161
// If a cluster supports search indexes, the call below will succeed
162162
// with a cursor otherwise will throw an Error
163163
await this.serviceProvider.getSearchIndexes(dummyDatabase, dummyCollection);

0 commit comments

Comments
 (0)