Skip to content

Commit

Permalink
Promote the Escalate plugin to stable
Browse files Browse the repository at this point in the history
  • Loading branch information
bryancall committed May 17, 2018
1 parent 8530210 commit d6e75e8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
9 changes: 3 additions & 6 deletions doc/admin-guide/plugins/escalate.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,8 @@ when the origin server in the remap rule returns a 401,
Installation
------------

This plugin is only built if the configure option ::

--enable-experimental-plugins

is given at build time.
This plugin is considered stable and is included with |TS| by default. There
are no special steps necessary for its installation.

Example
-------
Expand All @@ -61,4 +58,4 @@ With this line in :file:`remap.config` ::
Traffic Server would accept a request for ``cdn.example.com`` and, on a cache miss, proxy the
request to ``origin.example.com``. If the response code from that server is a 401, 404, 410,
or 502, then Traffic Server would proxy the request to ``second-origin.example.com``, using a
Host: header of ``cdn.example.com``.
Host: header of ``cdn.example.com``.
8 changes: 4 additions & 4 deletions doc/admin-guide/plugins/index.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ Plugins that are considered stable are installed by default in |TS| releases.
Combo Handler <combo_handler.en>
Configuration Remap <conf_remap.en>
ESI <esi.en>
Escalate <escalate.en>
Compress <compress.en>
Generator <generator.en>
Header Rewrite <header_rewrite.en>
Expand Down Expand Up @@ -84,6 +85,9 @@ Plugins that are considered stable are installed by default in |TS| releases.
:doc:`ESI <esi.en>`
Implements the Edge Side Includes (ESI) specification.

:doc:`Escalate <escalate.en>`
Escalate: when the origin returns specific status codes, retry the request at a secondary origin (failover/fail-action)

:doc:`Generator <generator.en>`
Generate arbitrary response data.

Expand Down Expand Up @@ -132,7 +136,6 @@ directory of the |TS| source tree. Experimental plugins can be compiled by passi
Cache Promote <cache_promote.en>
Collapsed-Forwarding <collapsed_forwarding.en>
Epic <epic.en>
Escalate <escalate.en>
GeoIP ACL <geoip_acl.en>
FQ Pacing <fq_pacing.en>
Header Frequency <header_freq.en>
Expand Down Expand Up @@ -166,9 +169,6 @@ directory of the |TS| source tree. Experimental plugins can be compiled by passi
:doc:`Epic <epic.en>`
Emits Traffic Server metrics in a format that is consumed by the Epic Network Monitoring System.

:doc:`Escalate <escalate.en>`
Escalate: when the origin returns specific status codes, retry the request at a secondary origin (failover/fail-action)

:doc:`FQ Pacing <fq_pacing.en>`
FQ Pacing: Rate Limit TCP connections using Linux's Fair Queuing queue discipline

Expand Down
2 changes: 1 addition & 1 deletion plugins/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ include authproxy/Makefile.inc
include background_fetch/Makefile.inc
include cachekey/Makefile.inc
include conf_remap/Makefile.inc
include escalate/Makefile.inc
include esi/Makefile.inc
include generator/Makefile.inc
include compress/Makefile.inc
Expand All @@ -55,7 +56,6 @@ include experimental/cache_range_requests/Makefile.inc
include experimental/collapsed_connection/Makefile.inc
include experimental/collapsed_forwarding/Makefile.inc
include experimental/custom_redirect/Makefile.inc
include experimental/escalate/Makefile.inc
include experimental/fq_pacing/Makefile.inc
include experimental/geoip_acl/Makefile.inc
include experimental/header_freq/Makefile.inc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

pkglib_LTLIBRARIES += experimental/escalate/escalate.la
pkglib_LTLIBRARIES += escalate/escalate.la

experimental_escalate_escalate_la_SOURCES = \
experimental/escalate/escalate.cc
escalate_escalate_la_SOURCES = \
escalate/escalate.cc
File renamed without changes.

0 comments on commit d6e75e8

Please sign in to comment.