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(
|
||||
sessionManager,
|
||||
options,
|
||||
mapper,
|
||||
_metrics,
|
||||
NullDashboardEventBroadcaster.Instance,
|
||||
_loggerFactory.CreateLogger<EventStreamService>());
|
||||
_metrics);
|
||||
|
||||
Service = new MxAccessGatewayService(
|
||||
sessionManager,
|
||||
|
||||
Reference in New Issue
Block a user