fix(integration-tests): update EventStreamService construction to 3-param ctor
WorkerLiveMxAccessSmokeTests built EventStreamService with the old 6-arg signature (mapper, dashboard broadcaster, logger) that predates the SessionEventDistributor refactor; the current ctor takes only (sessionManager, options, metrics). Pre-existing compile break on this branch, unrelated to the doc sweep. NonWindows.slnx now builds clean.
This commit is contained in:
@@ -1580,10 +1580,7 @@ public sealed class WorkerLiveMxAccessSmokeTests(ITestOutputHelper output)
|
|||||||
EventStreamService eventStreamService = new(
|
EventStreamService eventStreamService = new(
|
||||||
sessionManager,
|
sessionManager,
|
||||||
options,
|
options,
|
||||||
mapper,
|
_metrics);
|
||||||
_metrics,
|
|
||||||
NullDashboardEventBroadcaster.Instance,
|
|
||||||
_loggerFactory.CreateLogger<EventStreamService>());
|
|
||||||
|
|
||||||
Service = new MxAccessGatewayService(
|
Service = new MxAccessGatewayService(
|
||||||
sessionManager,
|
sessionManager,
|
||||||
|
|||||||
Reference in New Issue
Block a user