Skip to content

Commit

Permalink
Make v2 manager default (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
varunpuranik authored Apr 4, 2019
1 parent 34df35a commit 96a0087
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ void RegisterRoutingModule(ContainerBuilder builder, (bool isEnabled, bool usePe
.Map(s => TimeSpan.FromSeconds(s));
bool useV1TwinManager = this.GetConfigurationValueIfExists<string>("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);

Expand Down

0 comments on commit 96a0087

Please sign in to comment.