Skip to content

Commit d7f9f91

Browse files
Update rabbitmq_amqp_python_client/entities.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent b0e264c commit d7f9f91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rabbitmq_amqp_python_client/entities.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,13 +390,13 @@ def validate(self, versions: Dict[str, bool]) -> None:
390390
)
391391
if self._filter_option.message_properties and not versions.get("4.1.0", False):
392392
raise ValidationCodeException(
393-
"Stream filter by SQL requires RabbitMQ 4.1.0 or higher"
393+
"Stream filter by message_properties requires RabbitMQ 4.1.0 or higher"
394394
)
395395
if self._filter_option.application_properties and not versions.get(
396396
"4.1.0", False
397397
):
398398
raise ValidationCodeException(
399-
"Stream filter by SQL requires RabbitMQ 4.1.0 or higher"
399+
"Stream filter by application_properties requires RabbitMQ 4.1.0 or higher"
400400
)
401401

402402

0 commit comments

Comments
 (0)