We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48af25e commit 5c9308bCopy full SHA for 5c9308b
t/15-instance-reuse.t
@@ -53,12 +53,12 @@ location /a {
53
assert(res3 ~= res2, "responses should be unique tables")
54
assert(res3.headers ~= res2.headers, "headers should be unique tables")
55
56
- assert(httpc.keepalive == false, "keepalive flag should be false")
+ assert(httpc.keepalive_supported == false, "keepalive flag should be false")
57
58
assert(httpc:connect("127.0.0.1", ngx.var.server_port),
59
"connect should return positively")
60
61
- assert(httpc.keepalive == true, "keepalive flag should be true")
+ assert(httpc.keepalive_supported == true, "keepalive flag should be true")
62
63
}
64
0 commit comments