that's worrisome. @jeremykirkham try saving your ssl certificate and use
:ca-cert "/path/to/file"
when connecting.(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)))
^^ works for me on compose + heroku @apa512 @jeremykirkham
@mikethompson wow that sucks!!! I hope it's not that bad! thanks for the info