summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bradford <david.bradford@mongodb.com>2021-10-25 13:09:12 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-10-25 21:02:32 +0000
commit5da2ce69f7c863d14ddd0b1e2d36d2a675785ab2 (patch)
tree44be5038a1a26950daaee548d7bb4948a7fae78f
parentcc41c8ea388f7f87192e41f37f4f28e1f0d66a8c (diff)
downloadmongo-5da2ce69f7c863d14ddd0b1e2d36d2a675785ab2.tar.gz
SERVER-60971: Remove calls to BF Suggestion service
(cherry picked from commit bb31ac84744de48a5013ee747c08ee942e317eb3) (cherry picked from commit 7a12fd9ac4550bfb35f2fa5bfb7d193cf8ea6156) (cherry picked from commit 634311b8a994379b727e8e2adec4aa25ab670c5b) (cherry picked from commit 794a300754eab0e53f69a2119ea0f2a722d221e9)
-rw-r--r--etc/evergreen.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 8c0fe4a321b..9824bcc79b6 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -661,31 +661,6 @@ functions:
https_validate_certificates = False
EOF
- "call BF Suggestion service":
- command: shell.exec
- params:
- working_dir: src
- shell: bash
- silent: true
- script: |
- report_file="report.json"
- # Check if the report file exists and has failures.
- if [ -f $report_file ] && grep -Eq "\"failures\": [1-9]" $report_file; then
- # Calling the BF Suggestion server endpoint to start feature extraction.
- payload="{\"task_id\": \"${task_id}\", \"execution\": ${execution}}"
- echo "Sending task info to the BF suggestion service"
- # The --user option is passed through stdin to avoid showing in process list.
- user_option="--user ${bfsuggestion_user}:${bfsuggestion_password}"
- curl --header "Content-Type: application/json" \
- --data "$payload" \
- --max-time 10 \
- --silent \
- --show-error \
- --config - \
- https://bfsuggestion.corp.mongodb.com/tasks <<< $user_option
- echo "Request to BF Suggestion service status: $?"
- fi
-
"upload debugsymbols": &upload_debugsymbols
command: s3.put
params:
@@ -3293,7 +3268,6 @@ post:
- func: "attach report"
- func: "attach artifacts"
- func: "save ec2 task artifacts"
- - func: "call BF Suggestion service"
- func: "attach wiki page"
- func: "kill processes"
- func: "save local client logs"