We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765126d commit 5f8e7d0Copy full SHA for 5f8e7d0
.evergreen/run-tests-atlas-full.sh
@@ -13,7 +13,7 @@ set_env_ruby
13
bundle_install
14
15
ATLAS_URI=$MONGODB_URI \
16
- SERVERLESS=1 \
+ KILL_ALL_SERVER_SESSIONS=0 \
17
EXAMPLE_TIMEOUT=600 \
18
bundle exec rspec -fd spec/integration/search_indexes_prose_spec.rb
19
spec/support/spec_config.rb
@@ -163,7 +163,8 @@ def ocsp_connectivity?
163
end
164
165
def kill_all_server_sessions?
166
- ClusterConfig.instance.fcv_ish >= '3.6'
+ allow = ENV['KILL_ALL_SERVER_SESSIONS'] != '0'
167
+ allow && ClusterConfig.instance.fcv_ish >= '3.6'
168
169
170
# Test suite configuration
0 commit comments