Skip to content

Commit c8f5123

Browse files
p-mongop
andcommitted
Fix default topology name - should be standalone (#5130)
* Fix default topology name - should be standalone * revert gh actions changes * note topology: server * repair make-github-actions Co-authored-by: Oleg Pudeyev <[email protected]>
1 parent f65d499 commit c8f5123

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.evergreen/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set_env_vars() {
99
AUTH=${AUTH:-noauth}
1010
SSL=${SSL:-nossl}
1111
MONGODB_URI=${MONGODB_URI:-}
12-
TOPOLOGY=${TOPOLOGY:-server}
12+
TOPOLOGY=${TOPOLOGY:-standalone}
1313
DRIVERS_TOOLS=${DRIVERS_TOOLS:-}
1414

1515
if [ "$AUTH" != "noauth" ]; then

.evergreen/make-github-actions

100644100755
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44
# TODO: Support i18n-fallbacks test
55
# TODO: Support app-tests tests
66

7+
# Note on topology: server:
8+
# The GH actions use mongo-orchestration, which uses a "server" topology for
9+
# the standalone one. See transform_node! below for the mapping of all
10+
# topologies.
11+
712
require 'fileutils'
13+
require 'active_support'
814
require 'active_support/dependencies/autoload'
915
require 'active_support/core_ext'
1016
require 'yaml'
@@ -240,7 +246,7 @@ class Transmogrifier
240246

241247
def step_mongodb
242248
{
243-
id: "start-mongodb"
249+
id: "start-mongodb",
244250
name: "start mongodb",
245251
uses: "mongodb-labs/drivers-evergreen-tools@master",
246252
with: {

0 commit comments

Comments
 (0)