From 1b9bac41a6794e66e53e688b37a26e3cf1acdf86 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Thu, 30 Mar 2023 13:04:43 +0200 Subject: [PATCH] Fix for JSON parse error on x-dead-letter-exchange argument --- Tapeti/Connection/TapetiClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tapeti/Connection/TapetiClient.cs b/Tapeti/Connection/TapetiClient.cs index ec1316b..a23c8df 100644 --- a/Tapeti/Connection/TapetiClient.cs +++ b/Tapeti/Connection/TapetiClient.cs @@ -313,7 +313,7 @@ namespace Tapeti.Connection } - private static RabbitMQArguments? ConvertJsonArguments(IReadOnlyDictionary? arguments) + private static RabbitMQArguments? ConvertJsonArguments(IReadOnlyDictionary? arguments) { if (arguments == null) return null; @@ -599,7 +599,7 @@ namespace Tapeti.Connection public bool Exclusive { get; set; } [JsonProperty("arguments")] - public Dictionary? Arguments { get; set; } + public Dictionary? Arguments { get; set; } [JsonProperty("messages")] public uint Messages { get; set; }