aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
AJ Jaro 2020-11-17T13:04:45.082Z

Using https://github.com/mcohen01/amazonica I’ve tried adjusting the client config using code like below but it doesn’t seem to affect the results. I continue to receive a SocketTimeoutException after 200 seconds. Has anyone successfully configured the timeout?

(lambda/invoke {:client-config
                    {:connection-timeout 500000}}
                   :function-name "lambda-fn"
                   :log-type "Tail"
                   :payload payload)

AJ Jaro 2020-11-17T13:27:25.082200Z

SOLVED: I was using the incorrect timeout arg, it should’ve been…

:socket-timeout
ugh