Skip to content

Commit 765976a

Browse files
jamiscomandeo-mongo
authored andcommitted
RUBY-3268 search index management helpers (mongodb#2777)
* RUBY-3268 Index View API for Search Indexes * documentation, and align method names with the spec * return the correct value here * suppress NamespaceNotFound errors for the drop operation * prose tests for search indexes * rubocop * prose tests pass * first stab at evergreen config for index management specs * rubocop * gah, executable permissions * don't use FLE for full atlas tests * make sure MONGODB_URI is set * set the timeout higher for the search index specs * pass all aggregation options through to the list indexes command * use the correct implementation for #empty? * remove unnecessary validation
1 parent f447d09 commit 765976a

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.evergreen/config.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,6 @@ task_groups:
489489
DRIVERS_ATLAS_LAMBDA_PASSWORD="${DRIVERS_ATLAS_LAMBDA_PASSWORD}" \
490490
LAMBDA_STACK_NAME="dbx-ruby-lambda" \
491491
MONGODB_VERSION="7.0" \
492-
task_id="${task_id}" \
493-
execution="${execution}" \
494492
$DRIVERS_TOOLS/.evergreen/atlas/setup-atlas-cluster.sh
495493
- command: expansions.update
496494
params:
@@ -507,8 +505,6 @@ task_groups:
507505
DRIVERS_ATLAS_PRIVATE_API_KEY="${DRIVERS_ATLAS_PRIVATE_API_KEY}" \
508506
DRIVERS_ATLAS_GROUP_ID="${DRIVERS_ATLAS_GROUP_ID}" \
509507
LAMBDA_STACK_NAME="dbx-ruby-lambda" \
510-
task_id="${task_id}" \
511-
execution="${execution}" \
512508
$DRIVERS_TOOLS/.evergreen/atlas/teardown-atlas-cluster.sh
513509
tasks:
514510
- test-full-atlas-task

.evergreen/config/common.yml.erb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,6 @@ task_groups:
486486
DRIVERS_ATLAS_LAMBDA_PASSWORD="${DRIVERS_ATLAS_LAMBDA_PASSWORD}" \
487487
LAMBDA_STACK_NAME="dbx-ruby-lambda" \
488488
MONGODB_VERSION="7.0" \
489-
task_id="${task_id}" \
490-
execution="${execution}" \
491489
$DRIVERS_TOOLS/.evergreen/atlas/setup-atlas-cluster.sh
492490
- command: expansions.update
493491
params:
@@ -504,8 +502,6 @@ task_groups:
504502
DRIVERS_ATLAS_PRIVATE_API_KEY="${DRIVERS_ATLAS_PRIVATE_API_KEY}" \
505503
DRIVERS_ATLAS_GROUP_ID="${DRIVERS_ATLAS_GROUP_ID}" \
506504
LAMBDA_STACK_NAME="dbx-ruby-lambda" \
507-
task_id="${task_id}" \
508-
execution="${execution}" \
509505
$DRIVERS_TOOLS/.evergreen/atlas/teardown-atlas-cluster.sh
510506
tasks:
511507
- test-full-atlas-task

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ gemfiles/*.gemfile.lock
2727
.env
2828
build
2929
profile/benchmarking/data
30+
secrets-export.sh
31+
secrets-expansion.yml
32+
atlas-expansion.yml

0 commit comments

Comments
 (0)