[GitHub] trafficserver pull request: TS-3447 [buffer_upload plugin] set Url...

2015-03-19 Thread SolidWallOfCode
Github user SolidWallOfCode commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/181#discussion_r26804292 --- Diff: plugins/experimental/buffer_upload/buffer_upload.cc --- @@ -749,10 +753,22 @@ attach_pvc_plugin(TSCont /* contp ATS_UNUSED */, TSEven

Re: Intro to running new_tsqa

2015-03-19 Thread Susan Hinrichs
I think my original box just didn't have enough space in the root partition. Moved to another box, and things seem to be humming along. On both boxes to get going I had to do the following * Enable the epel yum repository * Install python-pip (yum package) * Use pip to install virtualenv On my

Re: Intro to running new_tsqa

2015-03-19 Thread James Peach
> On Mar 19, 2015, at 10:36 AM, Meera Mosale Nataraja wrote: > > James, > > "make update" failed for me because the url > https://github.com/jacksontj/tsqa/archive/master.zip is not found. You're using something old; master uses https://github.com/apache/trafficserver-qa/archive/master.zip >

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26780512 --- Diff: proxy/http/HttpSM.cc --- @@ -4622,16 +4623,16 @@ HttpSM::do_http_server_open(bool raw) ink_assert(pending_action == NULL);

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26780467 --- Diff: proxy/http/HttpSM.cc --- @@ -4622,16 +4623,16 @@ HttpSM::do_http_server_open(bool raw) ink_assert(pending_action == NULL);

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26780087 --- Diff: proxy/http/HttpTransact.cc --- @@ -5453,13 +5455,16 @@ void HttpTransact::initialize_state_variables_for_origin_server(State* s,

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26780171 --- Diff: proxy/http/HttpTransact.h --- @@ -698,16 +698,11 @@ class HttpTransact bool dns_round_robin; TransferEncoding_t tra

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26780107 --- Diff: proxy/http/HttpTransact.cc --- @@ -5522,7 +5527,10 @@ HttpTransact::initialize_state_variables_from_request(State* s, HTTPHdr* obsol

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26779989 --- Diff: proxy/http/HttpTransact.cc --- @@ -288,6 +288,8 @@ find_server_and_update_current_info(HttpTransact::State* s) /* fall thro

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26779947 --- Diff: proxy/http/HttpTransact.cc --- @@ -288,6 +288,8 @@ find_server_and_update_current_info(HttpTransact::State* s) /* fall thro

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
Github user ericcarlschwartz commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/182#discussion_r26779726 --- Diff: proxy/http/HttpSM.cc --- @@ -549,8 +549,9 @@ HttpSM::attach_client_session(HttpClientSession * client_vc, IOBufferReader * bu

[GitHub] trafficserver pull request: [TS-2157] Replace addr with src_addr a...

2015-03-19 Thread ericcarlschwartz
GitHub user ericcarlschwartz opened a pull request: https://github.com/apache/trafficserver/pull/182 [TS-2157] Replace addr with src_addr and dst_addr This is largely a renaming of existing conventions--there are a few areas I've highlighted w/ comments. merge of two commit

Re: Intro to running new_tsqa

2015-03-19 Thread Meera Mosale Nataraja
James, "make update" failed for me because the url https://github.com/jacksontj/tsqa/archive/master.zip is not found. Details: Meeras-MacBook-Pro:new_tsqa meera$ make update source virtualenv/bin/activate && virtualenv/bin/pip install --upgrade -r requirements.txt You are using pip version 6.0

Re: Intro to running new_tsqa

2015-03-19 Thread James Peach
> On Mar 19, 2015, at 9:04 AM, Susan Hinrichs > wrote: > > I don't have the appropriate python things set up. > > What I get now is (I changed the virtualenv_dir dir in the makefile to venv) > > /bin/sh: venv/bin/nosetests: No such file or directory > make: *** [test] Error 127 > [shinrich@lo

Re: SNI hook, blind tunnels and thread - strange behavior under load

2015-03-19 Thread Susan Hinrichs
Interesting. It appears that we are dropping the reenable action from your thread sometimes. I'm guessing there is an issue with the readReschedule. I'll give this a go in my transparent dev environment. A couple things you might want to look at. * Brian uncovered a fairly serious SSL sta

Re: Intro to running new_tsqa

2015-03-19 Thread Susan Hinrichs
I don't have the appropriate python things set up. What I get now is (I changed the virtualenv_dir dir in the makefile to venv) /bin/sh: venv/bin/nosetests: No such file or directory make: *** [test] Error 127 [shinrich@localhost new_tsqa]$ This is after I figured out how to include the python

Re: Intro to running new_tsqa

2015-03-19 Thread James Peach
> On Mar 18, 2015, at 2:04 PM, Susan Hinrichs > wrote: > > Or more aptly, how to set up your new_tsqa environment for python dunces. > > http://jjinux.blogspot.com/2014/01/python-lightning-quick-introduction-to.html > got me part way there. But still no nosetests. Can someone point me to th

SNI hook, blind tunnels and thread - strange behavior under load

2015-03-19 Thread Lev Stipakov
Hello, I made a simple plugin that sets up TS_SSL_SNI_HOOK and creates a blind tunnel from a separate thread. With low load everything works fine, but with moderate load (100 simultaneous users, each user sends 200 HTTPS requests) I see somewhat strange behavior. On a client side I use Tsung, whi