File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,8 @@ internal void Validate()
83
83
if ( IsFiltering && ! AvailableFeaturesSingleton . Instance . PublishFilter )
84
84
{
85
85
throw new UnsupportedOperationException ( "Broker does not support filtering. You need " +
86
- "RabbitMQ 3.13.0 or later." ) ;
86
+ "RabbitMQ 3.13.0 or later and " +
87
+ "the stream_filtering feature flag enabled." ) ;
87
88
}
88
89
89
90
switch ( ConsumerFilter )
Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ internal void Validate()
45
45
if ( Filter is { FilterValue : not null } && ! AvailableFeaturesSingleton . Instance . PublishFilter )
46
46
{
47
47
throw new UnsupportedOperationException ( "Broker does not support filtering. " +
48
- "You need RabbitMQ 3.13.0 or later." ) ;
48
+ "You need RabbitMQ 3.13.0 or later and" +
49
+ "the stream_filtering feature flag enabled." ) ;
49
50
}
50
51
}
51
52
}
You can’t perform that action at this time.
0 commit comments