From f20be1d643875c6d2e65963c4db0284ae85f623d Mon Sep 17 00:00:00 2001 From: Mike Minutillo Date: Fri, 19 Jun 2026 14:47:19 +0800 Subject: [PATCH] Do not disable integrated ServicePulse if we did not ask about it --- .../Instances/ServiceControlUpgradeOptions.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ServiceControlInstaller.Engine/Instances/ServiceControlUpgradeOptions.cs b/src/ServiceControlInstaller.Engine/Instances/ServiceControlUpgradeOptions.cs index 5e74501c4a..74e2ed9cfe 100644 --- a/src/ServiceControlInstaller.Engine/Instances/ServiceControlUpgradeOptions.cs +++ b/src/ServiceControlInstaller.Engine/Instances/ServiceControlUpgradeOptions.cs @@ -54,7 +54,11 @@ void ApplyChangesTo(ServiceControlInstance instance) } instance.SkipQueueCreation = SkipQueueCreation; - instance.EnableIntegratedServicePulse = EnableIntegratedServicePulse; + + if (EnableIntegratedServicePulse) + { + instance.EnableIntegratedServicePulse = true; + } } void ApplyChangesTo(ServiceControlAuditInstance instance)