@@ -221,7 +221,7 @@ import { delay } from "../../../../src/Utility/PromiseUtil";
221221 const definitionName1 = "pull-replication" + hub . database ;
222222 const definitionName2 = "pull-replication" + hub2 . database ;
223223
224- const timeout = 3_000 ;
224+ const timeout = 15_000 ;
225225
226226 await hub . maintenance . forDatabase ( hub . database ) . send ( new PutPullReplicationAsHubOperation ( definitionName1 ) ) ;
227227 await hub2 . maintenance . forDatabase ( hub2 . database ) . send ( new PutPullReplicationAsHubOperation ( definitionName2 ) ) ;
@@ -240,7 +240,8 @@ import { delay } from "../../../../src/Utility/PromiseUtil";
240240 connectionStringName : "ConnectionString2-" + sink . database ,
241241 hubName : definitionName2 ,
242242 taskId : pullTasks [ 0 ] . taskId ,
243- mode : "HubToSink"
243+ mode : "HubToSink" ,
244+ url : sink . urls [ 0 ]
244245 } ;
245246
246247 await ReplicationTestContext . addWatcherToReplicationTopology ( sink , pull , ...hub2 . urls ) ;
@@ -348,7 +349,7 @@ import { delay } from "../../../../src/Utility/PromiseUtil";
348349 hub = await testContext . getDocumentStore ( ) ;
349350
350351 const definitionName = "pull-replication" + hub . database ;
351- const timeout = 10_000 ;
352+ const timeout = 15_000 ;
352353
353354 await hub . maintenance . forDatabase ( hub . database )
354355 . send ( new PutPullReplicationAsHubOperation ( definitionName ) ) ;
@@ -369,7 +370,8 @@ import { delay } from "../../../../src/Utility/PromiseUtil";
369370 hubName : definitionName ,
370371 disabled : true ,
371372 taskId : pullTasks [ 0 ] . taskId ,
372- mode : "HubToSink"
373+ mode : "HubToSink" ,
374+ url : sink . urls [ 0 ] ,
373375 } ;
374376
375377 await ReplicationTestContext . addWatcherToReplicationTopology ( sink , pull , ...hub . urls ) ;
@@ -515,7 +517,8 @@ async function setupPullReplication(remoteName: string, sink: IDocumentStore, ..
515517 database : store . database ,
516518 connectionStringName : "ConnectionString-" + store . database ,
517519 hubName : remoteName ,
518- mode : "HubToSink"
520+ mode : "HubToSink" ,
521+ url : sink . urls [ 0 ] ,
519522 } ;
520523
521524 resList . push ( await ReplicationTestContext . addWatcherToReplicationTopology ( sink , pull , ...store . urls ) ) ;
0 commit comments