rethinkdb

apa512 2016-10-03T02:21:08.000200Z

that's worrisome. @jeremykirkham try saving your ssl certificate and use

:ca-cert "/path/to/file"
when connecting.

2016-10-03T04:30:38.000202Z

(defn ensure-cert-file! [cert]
  (let [cert-file-path "./pub-cert"]
    (if (not (.exists (io/file cert-file-path)))
        (spit cert-file-path cert))
    (if (.exists (io/file cert-file-path))
        cert-file-path)))

(def ca-cert (env :rethinkdb-ca-cert))
(def cert-file-path (if ca-cert (ensure-cert-file! ca-cert)))

2016-10-03T04:30:57.000203Z

^^ works for me on compose + heroku @apa512 @jeremykirkham

adrien 2016-10-03T19:16:03.000207Z

@mikethompson wow that sucks!!! I hope it's not that bad! thanks for the info