File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,9 @@ function copydbBetweenClustersTest(configObj) {
185185 target . stop ( ) ;
186186}
187187
188+ ( function ( ) {
189+ "use strict"
190+
188191var sourceClusterTypeValues = [ "single" , "repl" , "sharded" ]
189192var isSourceUsingAuthValues = [ true , false ]
190193var targetClusterTypeValues = [ "single" , "repl" , "sharded" ]
@@ -208,6 +211,13 @@ for (var i = 0; i < sourceClusterTypeValues.length; i++) {
208211 // SERVER-6427
209212 continue ;
210213 }
214+ if ( sourceClusterTypeValues [ i ] === "repl" &&
215+ isSourceUsingAuthValues [ j ] === false &&
216+ targetClusterTypeValues [ k ] === "sharded" &&
217+ isTargetUsingAuthValues [ l ] == true ) {
218+ // SERVER-18103
219+ continue ;
220+ }
211221 var testCase = {
212222 'sourceClusterType' : sourceClusterTypeValues [ i ] ,
213223 'isSourceUsingAuth' : isSourceUsingAuthValues [ j ] ,
@@ -221,5 +231,5 @@ for (var i = 0; i < sourceClusterTypeValues.length; i++) {
221231 }
222232 }
223233}
224-
234+ } ( ) ) ;
225235print ( baseName + " success!" ) ;
You can’t perform that action at this time.
0 commit comments