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)