We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1745bc commit 580878bCopy full SHA for 580878b
src/BuslyCLI.Console/Factories/RawEndpointFactory.cs
@@ -57,7 +57,7 @@ private TransportDefinition CreatePostgreSqlTransport(PostgreSqlTransportConfig
57
58
private TransportDefinition CreateAzureStorageQueuesTransport(string connectionString)
59
{
60
- var transport = new AzureStorageQueueTransport(connectionString);
+ var transport = new AzureStorageQueueTransport(connectionString, useNativeDelayedDeliveries: false);
61
transport.MessageWrapperSerializationDefinition = new SystemJsonSerializer();
62
return transport;
63
}
@@ -201,4 +201,4 @@ private static async Task<TransportInfrastructure> InternalCreateInfrastructure(
201
202
return infrastructure;
203
204
-}
+}
0 commit comments