Fix for JSON parse error on x-dead-letter-exchange argument

This commit is contained in:
Mark van Renswoude 2023-03-30 13:04:43 +02:00
parent 3ab8b19393
commit 1b9bac41a6
1 changed files with 2 additions and 2 deletions

View File

@ -313,7 +313,7 @@ namespace Tapeti.Connection
}
private static RabbitMQArguments? ConvertJsonArguments(IReadOnlyDictionary<string, JObject>? arguments)
private static RabbitMQArguments? ConvertJsonArguments(IReadOnlyDictionary<string, JValue>? arguments)
{
if (arguments == null)
return null;
@ -599,7 +599,7 @@ namespace Tapeti.Connection
public bool Exclusive { get; set; }
[JsonProperty("arguments")]
public Dictionary<string, JObject>? Arguments { get; set; }
public Dictionary<string, JValue>? Arguments { get; set; }
[JsonProperty("messages")]
public uint Messages { get; set; }