aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
2019-06-18T02:53:08.042300Z

I'm trying to give aws-api a try and can't seem to get anywhere. Does anyone have any idea how to start debugging this error? I do have a [default] section in my ~/.aws/credentials file and it doesn't appear to be a credentials issue.

2019-06-18T02:57:54.042800Z

do you have all required dependencies like com.cognitect.aws/endpoints and com.cognitect.aws/s3?

2019-06-18T02:58:01.043Z

Oh, and my deps are:

:deps {org.clojure/clojure {:mvn/version "RELEASE"}
        metasoarous/oz {:mvn/version "1.6.0-alpha3"}
        com.cognitect.aws/api {:mvn/version "0.8.305"}
        com.cognitect.aws/endpoints {:mvn/version "1.1.11.568"}
        com.cognitect.aws/s3 {:mvn/version "722.2.468.0"}}

ghadi 2019-06-18T03:01:27.043600Z

@bmaddy oz is pulling down 90000000 dependencies, almost certainly jetty is in conflict

2019-06-18T03:02:39.044400Z

Ah, ok. I'll look into how to that tomorrow. Thanks @ghadi--I appreciate it!

ghadi 2019-06-18T03:03:05.045200Z

add com.cognitect/http-client "0.1.99" top-level

2019-06-18T03:03:06.045300Z

@bmaddy what is your JVM version? I had issues with cognitect.aws for JVM > 8

ghadi 2019-06-18T03:03:22.045700Z

that's not it @s-a-n-9.

2019-06-18T03:03:58.045800Z

;; Clojure 1.10.1, Java 1.8.0_192

ghadi 2019-06-18T03:04:23.046100Z

{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
        metasoarous/oz {:mvn/version "1.6.0-alpha3"}
        com.cognitect.aws/api {:mvn/version "0.8.305"}
        com.cognitect.aws/endpoints {:mvn/version "1.1.11.568"}
        com.cognitect/http-client {:mvn/version "0.1.99"}
        com.cognitect.aws/s3 {:mvn/version "722.2.468.0"}}}

ghadi 2019-06-18T03:04:25.046300Z

should get you going.

2019-06-18T03:06:39.046400Z

Indeed it does--thank you!