diff --git a/edge-hub/src/Microsoft.Azure.Devices.Edge.Hub.Service/DependencyManager.cs b/edge-hub/src/Microsoft.Azure.Devices.Edge.Hub.Service/DependencyManager.cs index 95fafc6d2c9..7d8d15e3848 100644 --- a/edge-hub/src/Microsoft.Azure.Devices.Edge.Hub.Service/DependencyManager.cs +++ b/edge-hub/src/Microsoft.Azure.Devices.Edge.Hub.Service/DependencyManager.cs @@ -129,7 +129,7 @@ void RegisterRoutingModule(ContainerBuilder builder, (bool isEnabled, bool usePe .Map(s => TimeSpan.FromSeconds(s)); bool useV1TwinManager = this.GetConfigurationValueIfExists("TwinManagerVersion") .Map(v => v.Equals("v1", StringComparison.OrdinalIgnoreCase)) - .GetOrElse(true); + .GetOrElse(false); int maxUpstreamBatchSize = this.configuration.GetValue("MaxUpstreamBatchSize", 10); int upstreamFanOutFactor = this.configuration.GetValue("UpstreamFanOutFactor", 10);