Commit 15e87617 authored by Nils Goroll's avatar Nils Goroll

use only a single connection per vtc client

parent 663ee568
...@@ -57,7 +57,7 @@ varnish v1 -vcl+backend { ...@@ -57,7 +57,7 @@ varnish v1 -vcl+backend {
} }
} -start } -start
client c0 -repeat 100 { client c0 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
...@@ -68,7 +68,7 @@ client c0 -repeat 100 { ...@@ -68,7 +68,7 @@ client c0 -repeat 100 {
expect resp.http.up == true expect resp.http.up == true
expect resp.http.ok == true expect resp.http.ok == true
} -run } -run
client c1 -repeat 100 { client c1 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
...@@ -79,7 +79,7 @@ client c1 -repeat 100 { ...@@ -79,7 +79,7 @@ client c1 -repeat 100 {
expect resp.http.up == true expect resp.http.up == true
expect resp.http.ok == true expect resp.http.ok == true
} -run } -run
client c10 -repeat 100 { client c10 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
...@@ -90,7 +90,7 @@ client c10 -repeat 100 { ...@@ -90,7 +90,7 @@ client c10 -repeat 100 {
expect resp.http.up == true expect resp.http.up == true
expect resp.http.ok == true expect resp.http.ok == true
} -run } -run
client c11 -repeat 100 { client c11 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
...@@ -101,7 +101,7 @@ client c11 -repeat 100 { ...@@ -101,7 +101,7 @@ client c11 -repeat 100 {
expect resp.http.up == true expect resp.http.up == true
expect resp.http.ok == true expect resp.http.ok == true
} -run } -run
client c110 -repeat 100 { client c110 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
...@@ -112,7 +112,7 @@ client c110 -repeat 100 { ...@@ -112,7 +112,7 @@ client c110 -repeat 100 {
expect resp.http.up == true expect resp.http.up == true
expect resp.http.ok == true expect resp.http.ok == true
} -run } -run
client c111 -repeat 100 { client c111 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
...@@ -123,7 +123,7 @@ client c111 -repeat 100 { ...@@ -123,7 +123,7 @@ client c111 -repeat 100 {
expect resp.http.up == true expect resp.http.up == true
expect resp.http.ok == true expect resp.http.ok == true
} -run } -run
client c1010 -repeat 100 { client c1010 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
...@@ -134,7 +134,7 @@ client c1010 -repeat 100 { ...@@ -134,7 +134,7 @@ client c1010 -repeat 100 {
expect resp.http.up == true expect resp.http.up == true
expect resp.http.ok == true expect resp.http.ok == true
} -run } -run
client c1011 -repeat 100 { client c1011 -repeat 100 -keepalive {
txreq txreq
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment