summaryrefslogtreecommitdiff
path: root/jstests/sharding/union_with_read_preference.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/union_with_read_preference.js')
-rw-r--r--jstests/sharding/union_with_read_preference.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/sharding/union_with_read_preference.js b/jstests/sharding/union_with_read_preference.js
index acb15533300..74f6bf26d79 100644
--- a/jstests/sharding/union_with_read_preference.js
+++ b/jstests/sharding/union_with_read_preference.js
@@ -54,7 +54,7 @@ assert.eq(mongosColl
// Test that the union's sub-pipelines go to the primary.
for (let rs of [st.rs0, st.rs1]) {
const primaryDB = rs.getPrimary().getDB(dbName);
- profilerHasSingleMatchingEntryOrThrow({
+ profilerHasAtLeastOneMatchingEntryOrThrow({
profileDB: primaryDB,
filter: {
ns: unionedColl.getFullName(),
@@ -79,7 +79,7 @@ assert.eq(mongosColl
// Test that the union's sub-pipelines go to the secondary.
for (let rs of [st.rs0, st.rs1]) {
const secondaryDB = rs.getSecondary().getDB(dbName);
- profilerHasSingleMatchingEntryOrThrow({
+ profilerHasAtLeastOneMatchingEntryOrThrow({
profileDB: secondaryDB,
filter: {
ns: unionedColl.getFullName(),
@@ -136,7 +136,7 @@ assert.eq(runAgg(), [{_id: -1, docNum: [0, 2, 4]}, {_id: 1, docNum: [1, 3, 5]}])
for (let rs of [st.rs0, st.rs1]) {
jsTestLog(`Testing profile on shard ${rs.getURL()}`);
const secondaryDB = rs.getSecondary().getDB(dbName);
- profilerHasSingleMatchingEntryOrThrow({
+ profilerHasAtLeastOneMatchingEntryOrThrow({
profileDB: secondaryDB,
filter: {
ns: unionedColl.getFullName(),
@@ -148,7 +148,7 @@ for (let rs of [st.rs0, st.rs1]) {
errCode: {$ne: ErrorCodes.StaleConfig}
}
});
- profilerHasSingleMatchingEntryOrThrow({
+ profilerHasAtLeastOneMatchingEntryOrThrow({
profileDB: secondaryDB,
filter: {
ns: secondTargetColl.getFullName(),