This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 4104ce2a68 per_server.connection.queue removal upgrade notes (#11679)
4104ce2a68 is described below
commit 4104ce2a687717f39db2bd3d21a1df941fc27234
Author: Brian Neradt <[email protected]>
AuthorDate: Thu Aug 15 15:22:44 2024 -0500
per_server.connection.queue removal upgrade notes (#11679)
Adds upgrade notes for the removal of per_server.connection.queue_delay
and queue_size. See #7302.
---
doc/release-notes/upgrading.en.rst | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/doc/release-notes/upgrading.en.rst
b/doc/release-notes/upgrading.en.rst
index bfb7e8303a..e95394926b 100644
--- a/doc/release-notes/upgrading.en.rst
+++ b/doc/release-notes/upgrading.en.rst
@@ -97,14 +97,19 @@ Configuration Changes
---------------------
The following incompatible changes to the configurations have been made in
this version of ATS.
-The records.yaml entry proxy.config.http.down_server.abort_threshold has been
removed.
-
-The records.yaml entry
proxy.config.http.connect_attempts_max_retries_dead_server has been renamed to
proxy.config.http.connect_attempts_max_retries_down_server.
-
-The records.yaml entry proxy.config.http.connect.dead.policy has been renamed
to proxy.config.http.connect.down.policy.
-
-The records.yaml entry proxy.config.http.parent_proxy.connect_attempts_timeout
and proxy.config.http.post_connect_attempts_timeout
-have been removed. Instead use proxy.config.http.connect_attempts_timeout to
control all connection to origin timeouts.
+The ``records.config`` file has been renamed to :file:`records.yaml` and now
it is structured in YAML format.
+
+The following :file:`records.yaml` chnages have been made:
+
+- The records.yaml entry ``proxy.config.http.down_server.abort_threshold`` has
been removed.
+- The records.yaml entry
``proxy.config.http.connect_attempts_max_retries_dead_server`` has been renamed
to ``proxy.config.http.connect_attempts_max_retries_down_server``.
+- The entry ``proxy.config.http.connect.dead.policy`` has been renamed to
``proxy.config.http.connect.down.policy``.
+- The records.yaml entry
``proxy.config.http.parent_proxy.connect_attempts_timeout`` and
+ ``proxy.config.http.post_connect_attempts_timeout`` have been removed.
Instead use
+ ``proxy.config.http.connect_attempts_timeout`` to control all connection to
origin timeouts.
+- The per server origin connection feature had a few configurations that were
not used removed.
+ ``proxy.config.http.per_server.connection.queue_size`` and
``proxy.config.http.per_server.connection.queue_delay``
+ have been removed.
Plugins
-------