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
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?
-- 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
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: