Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade legacy Azure Service Bus and enable migration mode on endpoint oriented topology #1541

Merged
merged 2 commits into from Dec 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -15,6 +15,8 @@ public override void CustomizeEndpoint(EndpointConfiguration endpointConfig, Tra
var transport = endpointConfig.UseTransport<AzureServiceBusTransport>();
transport.Sanitization().UseStrategy<ValidateAndHashIfNeeded>();
var topology = transport.UseEndpointOrientedTopology();
topology.EnableMigrationToForwardingTopology();

foreach (var remoteInstance in remoteInstances)
{
foreach (var remoteType in remoteTypesToSubscribeTo)
Expand Down
Expand Up @@ -9,7 +9,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="NServiceBus.Azure.Transports.WindowsAzureServiceBus" Version="9.0.3" />
<PackageReference Include="NServiceBus.Azure.Transports.WindowsAzureServiceBus" Version="9.1.0" />
<PackageReference Include="NServiceBus.CustomChecks" Version="3.0.0" />
<PackageReference Include="NServiceBus.Newtonsoft.Json" Version="2.1.0" />
<PackageReference Include="Particular.CodeRules" Version="0.2.1" PrivateAssets="All" />
Expand Down