This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-06-06
Channels
- # announcements (1)
- # beginners (147)
- # boot (9)
- # calva (28)
- # cider (3)
- # circleci (18)
- # cljdoc (54)
- # cljs-dev (55)
- # cljsrn (22)
- # clojure (179)
- # clojure-canada (9)
- # clojure-dev (74)
- # clojure-europe (1)
- # clojure-italy (15)
- # clojure-nl (7)
- # clojure-spec (30)
- # clojure-uk (55)
- # clojurescript (65)
- # core-async (15)
- # cursive (12)
- # datomic (16)
- # events (4)
- # fulcro (25)
- # graalvm (3)
- # joker (2)
- # kaocha (15)
- # keechma (94)
- # off-topic (12)
- # qlkit (2)
- # re-frame (15)
- # reagent (11)
- # reitit (29)
- # remote-jobs (15)
- # rewrite-clj (16)
- # shadow-cljs (73)
- # spacemacs (144)
- # sql (3)
- # tools-deps (11)
- # unrepl (19)
- # vim (35)
Maybe someone can help me here, I have a CircleCi setup with two docker containers, one running my own code, and another running a s3 mock. Now, when calling this s3 mock on my own machine, thats instant, but on CircleCi it takes 20 seconds. That sounds like some timeout/backoff being triggered, but how could I debug what is ‘different’ on CircleCI?
@lennart.buit are you testing with the local circleci CLI command?
No I am not, maybe worth a try, didn’t even know that was a thing
it’s especially handy for testing your config before deploying (which I do too often to test…)
yeah, I am using it to validate, but I didn’t expect that it actually could run tests for me
thats nifty!
I don’t experience the same slowness locally through the CLI, the first invocation to the S3 mock is ‘slow’ at ~6 seconds, the last is alright at 700ms. At least nowhere near the 20 seconds I am seeing on CircleCi. So somewhere I am paying a 20 second penalty on Circle
no — sorry
thanks for the help tho!
yeah 😞
Yeah, I probably should do the latter, but the purist in me is complaining :’). Its so strange because it actually works, its not just failing, its just succeeding very slowly
I have a repo with an S3 mock (localstack) and the calls to it don't take 20s, if that helps in any way: https://circleci.com/gh/polymeris/cljs-aws/442
yeah also using localstack, that will be a great help indeed!