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:
Joseph Doherty
2026-07-07 14:11:07 -04:00
parent fca978de07
commit c08f98346a
@@ -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,