From 5e79ea961b9d6231a3a0e078762d3818f409a49b Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sat, 14 Dec 2024 13:13:12 -0500 Subject: [PATCH] Update README.md --- deps/rabbitmq_amqp1_0/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deps/rabbitmq_amqp1_0/README.md b/deps/rabbitmq_amqp1_0/README.md index 14f65b94c0e0..a94e14a689ca 100644 --- a/deps/rabbitmq_amqp1_0/README.md +++ b/deps/rabbitmq_amqp1_0/README.md @@ -1,11 +1,11 @@ -This AMQP 1.0 plugin is deprecated and exists only for backward compatibility. - -From RabbitMQ `v4.x` onwards, AMQP 1.0 is supported natively by RabbitMQ and all AMQP 1.0 code was moved from this directory to the core [rabbit](../rabbit/) app. +In RabbitMQ `4.x`, AMQP 1.0 is a [core protocol](https://www.rabbitmq.com/docs/amqp) that is always supported and does not +require a plugin to be enabled. This no-op plugin exists only such that deployment tools can continue to enable and disable this plugin without erroring: + ``` rabbitmq-plugins enable rabbitmq_amqp1_0 rabbitmq-plugins disable rabbitmq_amqp1_0 ``` -Enabling or disabling this plugin has no effect. -RabbitMQ `v4.x` supports AMQP 1.0 by default. + +Enabling or disabling this plugin has no effect on AMQP 1.0 support scope or clients.