You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I introduce this module to my project but got 400 error for the invalid http_req.
local ok, err = hc.spawn_checker{
shm = "healthcheck", -- defined by "lua_shared_dict"
upstream = "foo.com", -- defined by "upstream"
type = "http",
-- the http_req has a bug ?
-- http_req字段的格式可能有问题? 至少在我这里是老得到400 code.
http_req = "GET /status HTTP/1.0\r\nHost: foo.com\r\n\r\n",
-- raw HTTP request for checking
interval = 2000, -- run the check cycle every 2 sec
timeout = 1000, -- 1 sec is the timeout for network operations
fall = 3, -- # of successive failures before turning a peer down
rise = 2, -- # of successive successes before turning a peer up
valid_statuses = {200, 302}, -- a list valid HTTP status code
concurrency = 10, -- concurrency level for test requests
}
Everything is ok if i update the http_req as below: http_req = "GET /status HTTP/1.0\r\n\r\nHost: foo.com",
please advice.
The text was updated successfully, but these errors were encountered:
I introduce this module to my project but got 400 error for the invalid http_req.
Everything is ok if i update the http_req as below:
http_req = "GET /status HTTP/1.0\r\n\r\nHost: foo.com",
please advice.
The text was updated successfully, but these errors were encountered: