Hi List, Christopher,

Seems like d94f877 causes timeout in a pretty 'basic' connection test that transfers a little bit of data .?
Or at least attached test fails to complete for me..

#    top  TEST ./PB-TEST/basic_connection.vtc TIMED OUT (kill -9)
#    top  TEST ./PB-TEST/basic_connection.vtc FAILED (120.236) signal=9

Please can you take a look :) Thanks in advance.

Regards,

PiBa-NL (Pieter)

# Checks a simple request
varnishtest "Checks a simple request"
feature ignore_unknown_macro

server s1 {
    rxreq
    txresp -bodylen 42202
} -start

haproxy h1 -conf {
  global
    stats socket /tmp/haproxy.socket level admin

  defaults
    mode http
    log global
    option httplog
    timeout connect         3s
    timeout client          4s
    timeout server          4s

  frontend fe1
    bind "fd@${fe_1}"
    default_backend b1

  backend b1
    http-reuse never 
    server srv1 ${s1_addr}:${s1_port} 
#pool-max-conn 0

} -start

shell {
    HOST=${h1_fe_1_addr}
    if [ "${h1_fe_1_addr}" = "::1" ] ; then
        HOST="\[::1\]"
    fi
    curl -v -k "http://$HOST:${h1_fe_1_port}/CurlTest1";
} -run

server s1 -wait

Reply via email to