Fix for JSON parse error on x-dead-letter-exchange argument
This commit is contained in:
parent
3ab8b19393
commit
1b9bac41a6
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user