-- actionName, arguments, path, http_method, useSSL, timeout, contentType
local ok, code, headers, status, body = self:performAction("Invoke", payload, path, "POST", true, 60000, "application/x-amz-json-1.1", extra_headers)
if (code == ngx.HTTP_OK and body ~= nil) then
return {}, code, headers, status, body
end
return nil, code, headers, status, body
end
Hi,
We have some lambda's that run for more than 60s. Is it possible to remove the "60000" that has been hardcoded into the lambda invoke function and get it to use the "aws_conn_keepalive" variable when a new lambda service is created?