Repository: trafficserver Updated Branches: refs/heads/master 38b4765a2 -> ba342b905
TS-2933: Fix remap plugins vs. url caching. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/ba342b90 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/ba342b90 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/ba342b90 Branch: refs/heads/master Commit: ba342b9056c4b8900a96831cf60755e7d433c1c6 Parents: 38b4765 Author: Alan M. Carroll <[email protected]> Authored: Sat Aug 16 18:08:33 2014 -0500 Committer: Alan M. Carroll <[email protected]> Committed: Sat Aug 16 19:09:51 2014 -0500 ---------------------------------------------------------------------- CHANGES | 2 ++ proxy/http/remap/RemapProcessor.cc | 2 ++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/ba342b90/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index e51385e..13da8b1 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,8 @@ Changes with Apache Traffic Server 5.1.0 *) [TS-2722] authproxy: Eliminate the DNS lookup state, just use the client + + *) [TS-2933] Fix post remap and effective URL. IP with TSHttpConnect. *) [TS-2972] authproxy: Change the hook used, to always do the auth. http://git-wip-us.apache.org/repos/asf/trafficserver/blob/ba342b90/proxy/http/remap/RemapProcessor.cc ---------------------------------------------------------------------- diff --git a/proxy/http/remap/RemapProcessor.cc b/proxy/http/remap/RemapProcessor.cc index ca74117..0649890 100644 --- a/proxy/http/remap/RemapProcessor.cc +++ b/proxy/http/remap/RemapProcessor.cc @@ -285,6 +285,8 @@ RemapProcessor::finish_remap(HttpTransact::State *s) } } + request_header->mark_target_dirty(); + return remap_found; }
