summaryrefslogtreecommitdiff
path: root/jstests/aggregation/sharded_agg_cleanup_on_error.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/aggregation/sharded_agg_cleanup_on_error.js')
-rw-r--r--jstests/aggregation/sharded_agg_cleanup_on_error.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/aggregation/sharded_agg_cleanup_on_error.js b/jstests/aggregation/sharded_agg_cleanup_on_error.js
index 5fba3e477a9..fb646819d06 100644
--- a/jstests/aggregation/sharded_agg_cleanup_on_error.js
+++ b/jstests/aggregation/sharded_agg_cleanup_on_error.js
@@ -88,7 +88,7 @@ try {
try {
// Enable the failpoint to fail on establishing a merging shard cursor.
assert.commandWorked(mongosDB.adminCommand({
- configureFailPoint: "clusterAggregateFailToEstablishMergingShardCursor",
+ configureFailPoint: "shardedAggregateFailToEstablishMergingShardCursor",
mode: "alwaysOn"
}));
@@ -103,13 +103,13 @@ try {
} finally {
assert.commandWorked(mongosDB.adminCommand(
- {configureFailPoint: "clusterAggregateFailToEstablishMergingShardCursor", mode: "off"}));
+ {configureFailPoint: "shardedAggregateFailToEstablishMergingShardCursor", mode: "off"}));
}
// Test that aggregations involving $exchange correctly clean up the producer cursors.
try {
assert.commandWorked(mongosDB.adminCommand({
- configureFailPoint: "clusterAggregateFailToDispatchExchangeConsumerPipeline",
+ configureFailPoint: "shardedAggregateFailToDispatchExchangeConsumerPipeline",
mode: "alwaysOn"
}));
@@ -133,7 +133,7 @@ try {
} finally {
assert.commandWorked(mongosDB.adminCommand({
- configureFailPoint: "clusterAggregateFailToDispatchExchangeConsumerPipeline",
+ configureFailPoint: "shardedAggregateFailToDispatchExchangeConsumerPipeline",
mode: "off"
}));
}