@@ -223,7 +223,7 @@ import { delay } from "../../../../src/Utility/PromiseUtil.js";
223223 const definitionName1 = "pull-replication" + hub . database ;
224224 const definitionName2 = "pull-replication" + hub2 . database ;
225225
226- const timeout = 3_000 ;
226+ const timeout = 15_000 ;
227227
228228 await hub . maintenance . forDatabase ( hub . database ) . send ( new PutPullReplicationAsHubOperation ( definitionName1 ) ) ;
229229 await hub2 . maintenance . forDatabase ( hub2 . database ) . send ( new PutPullReplicationAsHubOperation ( definitionName2 ) ) ;
@@ -242,7 +242,8 @@ import { delay } from "../../../../src/Utility/PromiseUtil.js";
242242 connectionStringName : "ConnectionString2-" + sink . database ,
243243 hubName : definitionName2 ,
244244 taskId : pullTasks [ 0 ] . taskId ,
245- mode : "HubToSink"
245+ mode : "HubToSink" ,
246+ url : sink . urls [ 0 ]
246247 } ;
247248
248249 await ReplicationTestContext . addWatcherToReplicationTopology ( sink , pull , ...hub2 . urls ) ;
@@ -350,7 +351,7 @@ import { delay } from "../../../../src/Utility/PromiseUtil.js";
350351 hub = await testContext . getDocumentStore ( ) ;
351352
352353 const definitionName = "pull-replication" + hub . database ;
353- const timeout = 10_000 ;
354+ const timeout = 15_000 ;
354355
355356 await hub . maintenance . forDatabase ( hub . database )
356357 . send ( new PutPullReplicationAsHubOperation ( definitionName ) ) ;
@@ -371,7 +372,8 @@ import { delay } from "../../../../src/Utility/PromiseUtil.js";
371372 hubName : definitionName ,
372373 disabled : true ,
373374 taskId : pullTasks [ 0 ] . taskId ,
374- mode : "HubToSink"
375+ mode : "HubToSink" ,
376+ url : sink . urls [ 0 ] ,
375377 } ;
376378
377379 await ReplicationTestContext . addWatcherToReplicationTopology ( sink , pull , ...hub . urls ) ;
@@ -517,7 +519,8 @@ async function setupPullReplication(remoteName: string, sink: IDocumentStore, ..
517519 database : store . database ,
518520 connectionStringName : "ConnectionString-" + store . database ,
519521 hubName : remoteName ,
520- mode : "HubToSink"
522+ mode : "HubToSink" ,
523+ url : sink . urls [ 0 ] ,
521524 } ;
522525
523526 resList . push ( await ReplicationTestContext . addWatcherToReplicationTopology ( sink , pull , ...store . urls ) ) ;
0 commit comments