You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2019/02/06 19:21:50 UTC

[trafficserver] branch master updated: cookie_remap plugin documentation had typo in name of substituted variable

This is an automated email from the ASF dual-hosted git repository.

amc 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 4a9e6be  cookie_remap plugin documentation had typo in name of substituted variable
4a9e6be is described below

commit 4a9e6bee4800c9f6491d553f97e0ca38244c38a2
Author: Pushkar Pradhan <pp...@oath.com>
AuthorDate: Tue Feb 5 11:40:50 2019 -0800

    cookie_remap plugin documentation had typo in name of substituted variable
---
 doc/admin-guide/plugins/cookie_remap.en.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/admin-guide/plugins/cookie_remap.en.rst b/doc/admin-guide/plugins/cookie_remap.en.rst
index 24b5d94..8973316 100644
--- a/doc/admin-guide/plugins/cookie_remap.en.rst
+++ b/doc/admin-guide/plugins/cookie_remap.en.rst
@@ -43,7 +43,7 @@ Cookie Based Routing Inside TrafficServer Using cookie_remap
 
   * `Reserved path expressions <#reserved-path-expressions>`_
 
-    * `$cr_request_url <#cr_request_url-v-15>`_
+    * `$cr_req_url <#cr_req_url-v-15>`_
     * `$cr_urlencode() <#cr_urlencode-v-15>`_
     * `$path <#path>`_
     * `$unmatched_path <#unmatched_path>`_
@@ -219,7 +219,7 @@ Reserved path expressions
 
 The following expressions can be used in either the sendto **or** ``else`` URLs, and will be expanded.
 
-$cr_request_url
+$cr_req_url
 ^^^^^^^^^^^^^^^^^^^^^^^^^
 
 ----
@@ -235,7 +235,7 @@ Therefore, a rule like:
    op:
      cookie: K
      operation: exists
-     sendto: http://foo.com/?.done=$cr_request_url
+     sendto: http://foo.com/?.done=$cr_req_url
    </pre>
 
 
@@ -275,7 +275,7 @@ Therefore, a rule like:
    op:
      cookie: B
      operation: exists
-     sendto: http://foo.com/?.done=$cr_urlencode($cr_request_url)
+     sendto: http://foo.com/?.done=$cr_urlencode($cr_req_url)
    </pre>