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 efacb49 commit 141c4b5Copy full SHA for 141c4b5
RabbitMQ.AMQP.Client/Impl/AmqpConsumerBuilder.cs
@@ -139,6 +139,9 @@ public IConsumerBuilder.IStreamOptions Offset(string interval)
139
140
public IConsumerBuilder.IStreamOptions FilterValue(string value)
141
{
142
+ // Note:
143
+ // The value must implement IList for AMQP.NET to serialized it
144
+ // as expected.
145
var values = new List<string> { value };
146
_filters[s_streamFilterSymbol] =
147
new DescribedValue(s_streamFilterSymbol, values);
0 commit comments