Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,4 @@
<PackageReference Include="NUnit.Analyzers" Version="4.3.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>

<ItemGroup Condition="'$(PkgNServiceBus_TransportTests_Sources)' != ''">
<!--
The following tests currently fail on the CI build server. They are being excluded from the sources until they are fixed.
-->
<Compile Remove="$(PkgNServiceBus_TransportTests_Sources)\**\When_multiple_messages_are_available_and_concurrency_is_increased_after_pump_started.cs" />
<Compile Remove="$(PkgNServiceBus_TransportTests_Sources)\**\When_multiple_messages_are_available_and_concurrency_is_increased_and_decreased_after_pump_started.cs" />
<Compile Remove="$(PkgNServiceBus_TransportTests_Sources)\**\When_multiple_messages_are_available_and_concurrency_is_lowered_after_pump_started.cs" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/NServiceBus.Transport.Msmq/MsmqQueueCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void CreateQueueIfNecessary(string address)
}
catch (MessageQueueException permissionException) when (permissionException.MessageQueueErrorCode == MessageQueueErrorCode.FormatNameBufferTooSmall)
{
Logger.Warn($"The name for queue '{queue.FormatName}' is too long for permissions to be applied. Please consider a shorter endpoint name.", permissionException);
Logger.Warn($"The name for queue '{address}' is too long for permissions to be applied. Please consider a shorter endpoint name.", permissionException);
}
}
}
Expand Down