-
Notifications
You must be signed in to change notification settings - Fork 920
GODRIVER-3704 Fix search index failure on empty "Options". #2247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release/2.4
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,11 +26,6 @@ timeout: | |
| args: [ls, -la] | ||
|
|
||
| functions: | ||
| assume-test-secrets-ec2-role: | ||
| - command: ec2.assume_role | ||
| params: | ||
| role_arn: ${aws_test_secrets_role} | ||
|
|
||
| setup-system: | ||
| # Executes clone and applies the submitted patch, if any | ||
| - command: git.get_project | ||
|
|
@@ -439,7 +434,7 @@ functions: | |
| params: | ||
| binary: "bash" | ||
| env: | ||
| TEST_SEARCH_INDEX: "${MONGODB_URI}" | ||
| SEARCH_INDEX_URI: "${SEARCH_INDEX_URI}" | ||
| args: [*task-runner, evg-test-search-index] | ||
|
|
||
| add-aws-auth-variables-to-file: | ||
|
|
@@ -2063,7 +2058,7 @@ task_groups: | |
| params: | ||
| working_dir: src/go.mongodb.org/mongo-driver | ||
| binary: bash | ||
| include_expansions_in_env: [AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN] | ||
| include_expansions_in_env: [AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN, MONGODB_URI] | ||
| env: | ||
| MONGODB_VERSION: ${VERSION} | ||
| LAMBDA_STACK_NAME: dbx-go-lambda | ||
|
|
@@ -2072,6 +2067,15 @@ task_groups: | |
| - command: expansions.update | ||
| params: | ||
| file: src/go.mongodb.org/mongo-driver/atlas-expansion.yml | ||
| - command: shell.exec | ||
| params: | ||
| working_dir: src/go.mongodb.org/mongo-driver | ||
| shell: bash | ||
| script: |- | ||
| echo "SEARCH_INDEX_URI: ${MONGODB_URI}" > atlas-expansion.yml | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [blocking] The EG changes seem to be trying to avoid using |
||
| - command: expansions.update | ||
| params: | ||
| file: src/go.mongodb.org/mongo-driver/atlas-expansion.yml | ||
| teardown_group: | ||
| - command: subprocess.exec | ||
| params: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -160,7 +160,7 @@ tasks: | |
|
|
||
| evg-test-search-index: | ||
| # Use the long timeout to wait for the responses from the server. | ||
| - go test ./internal/integration -run TestSearchIndexProse -v -timeout {{.LONG_TEST_TIMEOUT}}s >> test.suite | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [blocking] We should define |
||
| - go test ./internal/integration -run ^TestSearchIndexProse$ -v -timeout {{.LONG_TEST_TIMEOUT}}s >> test.suite | ||
|
|
||
| evg-test-ocsp: | ||
| - go test -v ./mongo -run TestOCSP ${OCSP_TLS_SHOULD_SUCCEED} >> test.suite | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate of L175