[GitHub] trafficserver issue #699: TS-4514: Transaction hangs when no_dns_just_forwar...

2016-06-09 Thread ushachar
Github user ushachar commented on the issue: https://github.com/apache/trafficserver/pull/699 @zwoop -- Yep, the pulled hashes look right --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] trafficserver pull request #699: TS-4514: Transaction hangs when no_dns_just...

2016-06-09 Thread ushachar
Github user ushachar closed the pull request at: https://github.com/apache/trafficserver/pull/699 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the featur

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 Linux build *failed*! See https://ci.trafficserver.apache.org/job/Github-Linux/111/ for details. --- If your project is set up for it, you can reply to this email and have your reply app

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 FreeBSD build *failed*! See https://ci.trafficserver.apache.org/job/Github-FreeBSD/214/ for details. --- If your project is set up for it, you can reply to this email and have your reply

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 Linux build *failed*! See https://ci.trafficserver.apache.org/job/Github-Linux/112/ for details. --- If your project is set up for it, you can reply to this email and have your reply app

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 FreeBSD build *failed*! See https://ci.trafficserver.apache.org/job/Github-FreeBSD/215/ for details. --- If your project is set up for it, you can reply to this email and have your reply

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 Linux build *failed*! See https://ci.trafficserver.apache.org/job/Github-Linux/113/ for details. --- If your project is set up for it, you can reply to this email and have your reply app

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 FreeBSD build *failed*! See https://ci.trafficserver.apache.org/job/Github-FreeBSD/216/ for details. --- If your project is set up for it, you can reply to this email and have your reply

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 Linux build *failed*! See https://ci.trafficserver.apache.org/job/Github-Linux/114/ for details. --- If your project is set up for it, you can reply to this email and have your reply app

[GitHub] trafficserver issue #653: TS-4331: Major re-write of hostdb

2016-06-09 Thread atsci
Github user atsci commented on the issue: https://github.com/apache/trafficserver/pull/653 FreeBSD build *failed*! See https://ci.trafficserver.apache.org/job/Github-FreeBSD/217/ for details. --- If your project is set up for it, you can reply to this email and have your reply

Returned unexpected url redirect response

2016-06-09 Thread Ye, Hong
Hi there, Can someone please take a look and see if you can help me figure out what is wrong for following URL redirect? I am expecting the source URL is redirected to: http://www.comcastwholesale.com/services/linear-hd But I am seeing: http://www.comcastwholesale.com/solutions-indu

Re: Returned unexpected url redirect response

2016-06-09 Thread Kang Li
>>>  === Configuration in >>> /etc/trafficserver/regexmap/comcastmediacenter.com.reg  — one line only >>> again >>>  ^/cmc-hits/channel-detail.aspx?channel=2017  >>> http://www.comcastwholesale.com/services/linear-hd @status=301 You should escape the ? in the regex formula. ThanksKang O

Re: Returned unexpected url redirect response

2016-06-09 Thread Ye, Hong
Hi Kang, Thanks for your reply .. But I have a similar redirect which seems working fine: In remap.config: map http://hits.com http://hits.com @plugin=/usr/lib64/trafficserver/plugins/regex_remap.so @pparam=/etc/trafficserver/regexmap/hits.com.reg In /etc/trafficserver/regexmap/hits.com.reg

Re: Returned unexpected url redirect response

2016-06-09 Thread Kang Li
In fact, I had tried locally with 5.3.0. With the escape the redirect works fine. For your second case, it failed without escape. Could you add regex_remap debug tag to check if the regex_remap plugin really handle the redirect.  Thanks Kang On Thursday, June 9, 2016 2:31 PM, "Ye, Hong" w

Re: Returned unexpected url redirect response

2016-06-09 Thread Ye, Hong
Hi Kang, Please check below — from the debug, seems ATS is parsing the request the same way … thanks [root@ncst-urlrw03 regexmap]# cat hits.com.reg ^/industry-news?page=1 http://www.comcastwholesale.com/news @status=301 [root@ncst-urlrw03 regexmap]# grep hits.com ../remap.config redirect http:

Re: Returned unexpected url redirect response

2016-06-09 Thread Kang Li
>From the debug log, the 301 was generated by the origin but not ATS. If I ping >the origin directly, it would also return 301 response. [kangli@stakebake ~]$ curl -I -H "HOST: hits.com" http://hits.com/industry-news?page=1   HTTP/1.1 301 RedirectDate: Thu, 09 Jun 2016 22:31:28 GMTConnection: cl

Re: Returned unexpected url redirect response

2016-06-09 Thread Ye, Hong
Hi Kang, The reason that origin returned you 301 redirect is that hits.com is on our production redirect platform. It is very interesting that ATS returns response from “origin”. I thought it will just look up its configure table and return whatever in its configuration. Maybe I am wrong. Is i